You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
used jquery-week-calendar to Bootstrap project
Bootstrap has css box-sizing: border-box;
eg: ,:before, *:after {
box-sizing: border-box;
}
But not supported
I changed jquery.weekcalendar.js 860th lines of code:
used jquery-week-calendar to Bootstrap project
Bootstrap has css box-sizing: border-box;
eg:
,:before, *:after {
box-sizing: border-box;
}
But not supported
I changed jquery.weekcalendar.js 860th lines of code:
$calendarContainer.find('.wc-time-slot').height(options.timeslotHeight - 1);
changed
$calendarContainer.find('.wc-time-slot').height(options.timeslotHeight + 0.009);
$calendarContainer.find('.wc-time-header-cell').css({
height: (options.timeslotHeight * options.timeslotsPerHour) - 11,
padding: 5
});
changed
$calendarContainer.find('.wc-time-header-cell').css({
height: (options.timeslotHeight * options.timeslotsPerHour) - 1,
padding: 5
});
The text was updated successfully, but these errors were encountered: