| Issue 627: | redraw of the whole document window in firefox | |
| 6 people starred this issue and may be notified of changes. | Back to list |
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
Status:
Reproducing
Nov 15, 2010
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
(No comment was entered for this change.)
Summary:
redraw of the whole document window in firefox
Status: Accepted
Feb 13, 2011
Issue 821 has been merged into this issue.
May 8, 2011
Issue 840 has been merged into this issue.
Aug 13, 2013
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 |
|
| ► Sign in to add a comment |