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 using the jQuery 1.8 beta, or Internet Explorer 10, the $(elem).css('transform') returns 'none' when the element has not been transformed using css. The || condition never hits, and setFromString won't work.
It isn't the cleanest fix; but it works nonetheless:
Yep! seeing this in Windows 8 Release Preview. Just forked the project to patch.
Does this happen by default, or only when your CSS specifies "none", for instance using a media query or javascript to attempt and remove the transform?
Should we be checking if the result is of type String?
This also applies to issue#48.
When using the jQuery 1.8 beta, or Internet Explorer 10, the
$(elem).css('transform')
returns 'none' when the element has not been transformed using css. The||
condition never hits, and setFromString won't work.It isn't the cleanest fix; but it works nonetheless:
Change:
Into:
The text was updated successfully, but these errors were encountered: