This bug was introduced in September 1st patch (http://www.dota2.com/reborn/updates#September1)
Example:
This code only works the first time.
The second time the code tries to set the transition to "none", it simply doesn't work, and the panel keeps the transition that it already had.
After that, the panel seems to bug out even more, and it doesn't matter what value you try to set to the transition, it just stops working.
Let me know if you need more information.
I also saw some people experiencing similar issues with other style properties like "position" or "margin", but I only tested with transitions.
Thanks.
Example:
Code:
panel.style.transition = "none;"; panel.style.width = "200px;"; panel.style.transition = "width 200ms linear 0ms;"; panel.style.width = "0px;";
The second time the code tries to set the transition to "none", it simply doesn't work, and the panel keeps the transition that it already had.
After that, the panel seems to bug out even more, and it doesn't matter what value you try to set to the transition, it just stops working.
Let me know if you need more information.
I also saw some people experiencing similar issues with other style properties like "position" or "margin", but I only tested with transitions.
Thanks.
Comment