You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: