| Issue 333: | firefox and calendar height | |
| 4 people starred this issue and may be notified of changes. | Back to list |
When i set height or content height to calendar and try to go to another day or week in day or week mode calendar begins "blinking" (only in firefox). (P.S. maybe I do something wrong).
Feb 15, 2010
hi witiokz, i think my latest bugfixes have solved this problem. can you please try the attached fullcalendar.js? please let me know if it fixes the problem thanks, adam
Feb 18, 2010
hi adam, all works perfectly. thanks, witiokz
Feb 21, 2010
this issue should be fixed in 1.4.5 (just released). please let me know if any more problems. thanks for the help
Status:
Fixed
Jun 1, 2010
Hi, I am still getting an issue similar to what is described here, I am not certain it is the same thing. I can reproduce this by going to http://arshaw.com/fullcalendar/. After the page loads, click on the 'week' button. As the view transitions, you should see a sort of white flash. It is like there is an absolute positioned Div, that appears above the calendar, and then quickly snaps into place. This only happens for me in Firefox. Specifically: "Mozilla/5.0 (Windows; U; Windows NT 5.2; en-GB; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (.NET CLR 3.5.30729)" After you have switched to the view, the glitch nolonger occurs, until you reload the page, or go to the next month/week, etc. It happens with the latest 1.4.6 build and the previous 1.4.5.
Oct 25, 2010
Hi, there is 1.4.5's patch :p
--- fullcalendar.js.org 2010-10-26 13:49:34.000000000 +0900
+++ fullcalendar.js 2010-10-26 13:50:19.000000000 +0900
@@ -1829,7 +1829,9 @@
scroll = function() {
body.scrollTop(top);
};
+ if ( !firefox ) {
scroll();
+ }
setTimeout(scroll, 0); // overrides any previous scroll state made by the browser
}
Nov 5, 2010
Any chance of getting opp.syst's patch in the main branch? I'm still seeing this issue. opp.syst's patch fixes it (well, except that the firefox variable isn't defined)
Nov 5, 2010
This patch works for 1.4.8.
--- fullcalendar.js.org 2010-10-16 19:13:47.000000000 -0500
+++ fullcalendar.js 2010-11-05 14:00:49.000000000 -0500
@@ -2273,7 +2273,7 @@
scroll = function() {
body.scrollTop(top);
};
- scroll();
+ if ($.browser != 'mozilla') scroll();
setTimeout(scroll, 0); // overrides any previous scroll state made by the browser
}
@@ -4591,4 +4591,4 @@
-})(jQuery);
\ No newline at end of file
+})(jQuery);
Nov 5, 2010
Oops, I might be wrong about what's causing the flash in my case. Still investigating.
Nov 21, 2010
the official issue for this is issue 627 , please resume conversation there... (since this issue is closed)
Aug 13, 2013
(No comment was entered for this change.)
Status:
Implemented
Aug 13, 2013
(No comment was entered for this change.)
Status:
Released
|
|
| ► Sign in to add a comment |
2.4 KB View Download