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
jQuery Address v1.6
jquery v1.8.3
Chrome Version 40.0.2214.115 m
loaded via requirejs
on line 137 within the _load function
$('a[rel*="address:"]').address();
The function address is sometimes undefined.
I seem to have successfully patched this by moving the function
$.fn.address = function (fn) { ...
above
$.address = (function () {...
Haven't seen this problem under firefox or IE
The text was updated successfully, but these errors were encountered:
Point of interest: I periodically see this error on IE11 but it seems to be related to latency and order of execution issues. In particular, I never see it with caching disabled. I will try the above.
jQuery Address v1.6
jquery v1.8.3
Chrome Version 40.0.2214.115 m
loaded via requirejs
on line 137 within the _load function
$('a[rel*="address:"]').address();
The function address is sometimes undefined.
I seem to have successfully patched this by moving the function
$.fn.address = function (fn) { ...
above
$.address = (function () {...
Haven't seen this problem under firefox or IE
The text was updated successfully, but these errors were encountered: