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
which mean movingFlag is still set to true and it's returning from mousemove on the begining of action.
I propose to add that.opts.movingFlag = false; to mouseup. Then it works fine but I didn't analize all code.
thx
The "movingFlag" will only be "true" if it's actually moved."Mouseup" does not necessarily call ”move“.
webkitTransitionEnd has been executed, but move hasn't been executed yet. So I also think that webkitTransitionEnd controls what I don't think is the best approach
webkitTransitionEnd will not be triggered sometimes in WeChat (Android 7.1) , and then the page is frozen.
I'd set the movingFlag to true in function 'moveTo' and worked well
When animation is set to
false
inmoveTo()
then there is no action inwhich mean
movingFlag
is still set totrue
and it's returning frommousemove
on the begining of action.I propose to add
that.opts.movingFlag = false;
tomouseup
. Then it works fine but I didn't analize all code.The text was updated successfully, but these errors were encountered: