Skip to content

Commit

Permalink
Add IE9 support
Browse files Browse the repository at this point in the history
  • Loading branch information
cjc committed Sep 5, 2011
1 parent 6e1f6df commit 0e5ea7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/morpheus.js
Expand Up @@ -13,7 +13,7 @@
// which property name does this browser use for transform
, transform = function () {
var styles = doc.createElement('a').style
, props = ['webkitTransform','MozTransform','OTransform','Transform'], i
, props = ['webkitTransform','MozTransform','OTransform','msTransform','Transform'], i
for (i = 0; i < props.length; i++) {
if (props[i] in styles) return props[i]
}
Expand Down

0 comments on commit 0e5ea7d

Please sign in to comment.