Fix scrolling through months

This commit is contained in:
Bart Visscher 2011-11-17 23:53:06 +01:00
parent a38778f911
commit ee549dfb38
1 changed files with 4 additions and 0 deletions

View File

@ -198,8 +198,12 @@ Calendar={
win_height = $(window).height();
if(direction == 'down' && win_height == (doc_height - scroll)){
$('#calendar_holder').fullCalendar('next');
$(document).scrollTop(0);
event.preventDefault();
}else if (direction == 'top' && scroll == 0) {
$('#calendar_holder').fullCalendar('prev');
$(document).scrollTop(win_height);
event.preventDefault();
}
},
Calendar:{