You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using FF3, the bulk AJAX request which happens at window.load contains
the "load" measurement in the ets parameter:
http://hostname/rx?uid=1218466993468,&st=1218467010556&pn=MyPage&ets=load:2568
In IE7, the bulk AJAX request looks like this:
http://hostname/rx?uid=1218470329718,&st=1218470345859&pn=MyPage&ets=
The "ets" parameter is empty.
After a little bit of poking around, it seems to me that the AJAX request
(the call to _bulkLoad()) happens BEFORE the "load" event gets measured
(the call to Jiffy.measure("load", null)).
Original issue reported on code.google.com by [email protected] on 11 Aug 2008 at 4:08
The text was updated successfully, but these errors were encountered:
After more poking around, seems like the faulting function is Jiffy.utils.on().
The
event handlers are added in the correct order, but called in the reverse order.
I managed to work around it using jQuery. Jiffy.utils.on now uses jQuery event
handling if jQuery is available. See attached file for a patch.
Original issue reported on code.google.com by
[email protected]
on 11 Aug 2008 at 4:08The text was updated successfully, but these errors were encountered: