Issue 627: redraw of the whole document window in firefox
Status:  Released
Owner: ----
Closed:  Aug 2013
Reported by blablabl...@googlemail.com, Sep 2, 2010
By changing from month-view to agendaWeek/agendaDay-view the browser redraws the whole document instead of just to redraw the calendar content.
This issue appers only by FF(Firefox/3.6.8). 
IE and Chrome works fine.


 
Oct 7, 2010
Project Member #1 adamrs...@gmail.com
yeah, i've noticed this before too. need to investigate it more...
Status: Reproducing
Nov 15, 2010
#2 opp.s...@gmail.com
div.fc-view-agendaWeek or div.fc-view-agendaDay is not exist in window.document, the browser redraws in the same way as above.
* the defautView specified agendaWeek/agendaDay-view 
* chang view from month to agend(Week|Day) before render agenda(Week|Day).

comment out 'body.scrollTop(top)', the browser dose not redraws the whole document.
but time position start 12am...

thanks in advance.

--- fullcalendar.js.org 2010-11-15 15:49:57.000000000 +0900
+++ fullcalendar.js     2010-11-15 15:50:42.000000000 +0900
@@ -2271,7 +2271,7 @@
                scrollDate.setHours(opt('firstHour'));
                var top = timePosition(d0, scrollDate) + 1, // +1 for the border
                        scroll = function() {
-                               body.scrollTop(top);
+                               // body.scrollTop(top);
                        };
                scroll();
                setTimeout(scroll, 0); // overrides any previous scroll state made by the browser

Jan 1, 2011
Project Member #3 adamrs...@gmail.com
(No comment was entered for this change.)
Summary: redraw of the whole document window in firefox
Status: Accepted
Feb 13, 2011
Project Member #4 adamrs...@gmail.com
 Issue 821  has been merged into this issue.
May 8, 2011
Project Member #5 adamrs...@gmail.com
 Issue 840  has been merged into this issue.
Aug 13, 2013
Project Member #6 adamrs...@gmail.com
I never specifically fixed this, but with my recent refactor of view-switching rendering in 1.6.3, and with the latest FF, I can almost assuredly say this is fixed.
Status: Released
Labels: -Type-Defect Type-Bug