for (var name in style) { | |
try { | |
var value = style[name]; | |
if (value == this.implicit.css[name]) value = null; | |
if (value == null) e.style.removeProperty(name); | |
else e.style[name] = value; | |
} catch (e) { print(e); print(e.style);} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment