Skip to content

Commit c5264ce

Browse files
author
louisremi
committed
fix the regular expression that turns camel-case properties to lower-case ones for IE9. Fixes #8346
1 parent e405419 commit c5264ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/css.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
var ralpha = /alpha\([^)]*\)/i,
44
ropacity = /opacity=([^)]*)/,
55
rdashAlpha = /-([a-z])/ig,
6-
rupper = /([A-Z])/g,
6+
rupper = /([A-Z]|^ms)/g,
77
rnumpx = /^-?\d+(?:px)?$/i,
88
rnum = /^-?\d/,
99

0 commit comments

Comments
 (0)