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
when .mobile-menu has right -200px, the return value for the transition is 200 instead of 0, I track the issue to the private method _applyCSSTransition under
offsetPosition = value - cleanPropertyValue;
value = 0 and cleanPropertyValue = -200 so the offsetPosition give me 200
in needs something else to handle the values correctly thanks!
The text was updated successfully, but these errors were encountered:
Thanks for posting that fix, hitchhiker. It makes the "right" property animate as expected.
I've run into this problem on multiple projects now. Ben, would you please fix this?
In case anyone would like to know, to apply hitchhiker's fix to the current minified version, you change
s=f-p;
to
s=(b=='bottom'||b=='right')?f:(f-p);
if I try to animate
$('.mobile-menu').animate({
right: 0
},
when .mobile-menu has right -200px, the return value for the transition is 200 instead of 0, I track the issue to the private method _applyCSSTransition under
offsetPosition = value - cleanPropertyValue;
value = 0 and cleanPropertyValue = -200 so the offsetPosition give me 200
in needs something else to handle the values correctly thanks!
The text was updated successfully, but these errors were encountered: