Fixed a bunch of annoying/major graphical issues with the calendar
* Fixed a bug where the calendar would keep shrinking smaller and smaller as you resized the window. * Fixed the size and alignment of the time span combobox in the corner, which fixes a bug where the text was cut off. * Fixed a bug where the schedule header would grow as you flipped to the next or previous week. * Dropped javascript from the resizing of the calendar (for the most part).
This commit is contained in:
parent
15370702a4
commit
f16d8ca2ea
5 changed files with 66 additions and 25 deletions
|
@ -252,8 +252,8 @@ function createFullCalendar(data){
|
|||
|
||||
serverTimezoneOffset = data.calendarInit.timezoneOffset;
|
||||
|
||||
var mainHeight = document.documentElement.clientHeight - 200 - 50;
|
||||
|
||||
var mainHeight = $(window).height() - 200 - 35;
|
||||
|
||||
$('#schedule_calendar').fullCalendar({
|
||||
header: {
|
||||
left: 'prev, next, today',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue