when I include your core to my project in IE
I receive error
Assignment to read-only properties is not allowed in strict mode
util.js (147,1)
could you fix it
for example
changing line utils,js:147
from
if (style) wrapper.style = style;
to
if (style) wrapper.style.cssText = style;
when I include your core to my project in IE I receive error Assignment to read-only properties is not allowed in strict mode util.js (147,1) could you fix it for example changing line utils,js:147 from if (style) wrapper.style = style; to if (style) wrapper.style.cssText = style;
thank you