Open dvb3688 opened 8 years ago
used jquery-week-calendar to Bootstrap project Bootstrap has css box-sizing: border-box; eg: ,:before, *:after { box-sizing: border-box; } But not supported
$calendarContainer.find('.wc-time-slot').height(options.timeslotHeight - 1); changed
$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 });
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 });