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
In uncamel function used to convert a camelcase string to a dasherized string there is a bug.
When css property is prefixed with IE prefix "ms" this function should convert it like this:
from this: msTransform should be this: -ms-transform now is this: ms-transform
In uncamel function used to convert a camelcase string to a dasherized string there is a bug.
When css property is prefixed with IE prefix "ms" this function should convert it like this:
from this:
msTransform
should be this:
-ms-transform
now is this:
ms-transform
We have:
Should be:
The text was updated successfully, but these errors were encountered: