Issue 333: firefox and calendar height
Status:  Released
Owner: ----
Closed:  Aug 2013
Reported by witi...@gmail.com, Feb 10, 2010
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 12, 2010
#1 witi...@gmail.com
it is quite difficult to find that is wrong, because one change make calendar
workable, other changes don't. I attach runnable html with the problem.
ShowJobs3.htm
2.4 KB   View   Download
Feb 15, 2010
Project Member #2 adamrs...@gmail.com
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
fullcalendar.js
85.3 KB   View   Download
Feb 18, 2010
#3 witi...@gmail.com
hi adam,
all works perfectly. thanks,
witiokz
Feb 21, 2010
Project Member #4 adamrs...@gmail.com
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
#5 gabla...@gmail.com
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
#6 opp.s...@gmail.com
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
#7 jeremy.f...@gmail.com
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
#8 jeremy.f...@gmail.com
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
#9 jeremy.f...@gmail.com
Oops, I might be wrong about what's causing the flash in my case.  Still investigating.
Nov 21, 2010
Project Member #10 adamrs...@gmail.com
the official issue for this is  issue 627 , please resume conversation there... (since this issue is closed)
Aug 13, 2013
Project Member #11 adamrs...@gmail.com
(No comment was entered for this change.)
Status: Implemented
Aug 13, 2013
Project Member #12 adamrs...@gmail.com
(No comment was entered for this change.)
Status: Released