roundabout icon indicating copy to clipboard operation
roundabout copied to clipboard

jQuery UI 1.8.23 => animation broken!

Open SexySale opened this issue 12 years ago • 6 comments

jQuery UI version from 1.8.23 till 1.9.0 animation broken! (jQuery 1.7.2. version)

SexySale avatar Oct 09 '12 12:10 SexySale

I've found the same issue occurs with jQuery 1.8.2 and jQuery UI 1.9.1. I fixed it by changing the following line:

(around line 693, commented out easeOutBack check) if (methods.compareVersions.apply(null, [$().jquery, "1.7.2"]) >= 0 /&& !($.easing["easeOutBack"])/) {

noremacstew avatar Nov 02 '12 10:11 noremacstew

Thanks noremacstew, this solved the problem for me too.

next-direction avatar Nov 13 '12 07:11 next-direction

line 693, in which file? I searched for

if (methods.compareVersions.apply(null, [$().jquery, "1.7.2"]) >= 0 /&& !($.easing["easeOutBack"])/) {

in jquery, ui and roundabout and did not find it

WLL70 avatar Jan 09 '13 19:01 WLL70

For me it is line 693 of jquery.roundabout.js (v2.4.2).

The PHP comment you quoted around for the easeOutBack check was the change I made to fix the issue. Try searching for:

if (methods.compareVersions.apply(null, [$().jquery, "1.7.2"]) >= 0 && !($.easing["easeOutBack"]))

In my copy there is also this comment just above that line:

// fixes issue #24, animation changed as of jQuery 1.7.2 // also addresses issue #29, using easing breaks "linear"

Searching for those comments might lead you to the line I was referring to. Hope that helps!

noremacstew avatar Jan 09 '13 20:01 noremacstew

I can't thank you enough for this fix!

WLL70 avatar Jan 10 '13 15:01 WLL70

Works for me on jquery-ui-1.9.2.custom.min.js (full) ; jquery-1.8.3.min.js and roundabout 2.4.2

Thanks a lot !

blacroix avatar Jan 26 '13 11:01 blacroix