Hi!
Thank you for a great library.
I was wondering, if I first animate a box like this:
move('#square').to(300, 200).end();
And then I want to position the box without an animation, like in this pure JS example:
document.getElementById('square').style.transform = "translate(200px, 200px)";
It will animate with move.js's settings, because
transition-duration: 500ms;
is not removed from element styles when the animation is completed. By design?
I think those styles should be removed when end() is triggered.
Carl