Closed ghost closed 11 years ago
Hi,
Just a "heads up". I just started using jQuery v1.9.0 and found that $.browser is no longer supported on line 288 of the "version 0.10" script here on Github.
var useNativeAnim = ($.browser.webkit && settings.nativeanimation);
I just removed it like this:
var useNativeAnim =settings.nativeanimation;
...and all is well. Great script by the way!
Thanks for the tip, I just had the same issue and your comment fixes it :-)
please commit this patch to the main version
Thanks all, I'll fix this soon.
This is now fixed in Zoomooz.
Hi,
Just a "heads up". I just started using jQuery v1.9.0 and found that $.browser is no longer supported on line 288 of the "version 0.10" script here on Github.
var useNativeAnim = ($.browser.webkit && settings.nativeanimation);
I just removed it like this:
var useNativeAnim =settings.nativeanimation;
...and all is well. Great script by the way!