animate.clear

webix.animate.clear(node)

webix.animate.clear helper.

Please look into the linked official documentation.

Referenced by

helpers
breakLine().
views
window().

External references

Official documentation page.

Code

1
2
3
4
5
webix.animate.clear=function(node){
    node.style[webix.env.transform] = "none";
    node.style[webix.env.transition] = "none";
    node.style.top = node.style.left = "";
};