Open WLL70 opened 11 years ago
check this issue - worked for me https://github.com/fredhq/roundabout/issues/72
Seeing the same issue with 1.10.1 jquery ui. removing the ui library results in the roundabout working
Line 693 reads:
if (methods.compareVersions.apply(null, [$().jquery, "1.7.2"]) >= 0 && !($.easing["easeOutBack"])) {
if you change this to
if (true) {
it works just fine.
I don't think there is a need for the compareVersions function any more, perhaps a specific "if version is(not) ..*"
Thanks Kwilsbach, this is working perfectly fine for me!
Thanks kwilsbach for the fix !
Absolute life saver Kwilsbach, this issue pretty much blows the otherwise awesome plugin up. Can confirm the suggested fix by Kwilsbach, above works perfectly!
Great, thank you for the fix!
+1 on either removing this check, or improving it to work w/ the latest jquery + jquery ui libraries.
using UI 1.10.3 not working for me ...
I changed d.compareVersions.apply(null,[a().jquery,"1.7.2"])>=0&&!a.easing["easeOutBack"] with true and all works fine!
I noticed if you charge first jQuery UI than jQuery works the same (but obviously other javascript works bad)
http://code.jquery.com/jquery-1.10.2.min.js http://code.jquery.com/ui/1.10.3/jquery-ui.js jQuery Roundabout - v2.4.2
if you take your sample demo page
http://fredhq.com/projects/roundabout/demos/standard
and add
http://code.jquery.com/ui/1.9.2/jquery-ui.js
to the page and BOOM doesn't rotate any longer.
You are using jQuery Roundabout - v2.1.1 in your demo so i tried both that and your latest v2.4.2 still no dice.
PS: Great plugin