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
I couldn't get the CSS transitions to work with jQuery 1.8.x.
I traced the problem as far as line 643 in /dist/jquery.jcarousel.js. The script seems to error out at this point because it is passing a jQuery object backup into the css() method. After bumping the jQuery version up to 1.9 the problem disappeared.
Now I look at the jQuery docs, I see that array argument style was introduced with jQuery 1.9, so either you'd want to rewrite this, put a caveat in the docs against using transitions, or change the version constraints in bower.js etc...
The text was updated successfully, but these errors were encountered:
I couldn't get the CSS transitions to work with jQuery 1.8.x.
I traced the problem as far as line 643 in /dist/jquery.jcarousel.js. The script seems to error out at this point because it is passing a jQuery object
backup
into thecss()
method. After bumping the jQuery version up to 1.9 the problem disappeared.Now I look at the jQuery docs, I see that array argument style was introduced with jQuery 1.9, so either you'd want to rewrite this, put a caveat in the docs against using transitions, or change the version constraints in bower.js etc...
The text was updated successfully, but these errors were encountered: