fix the regular expression that turns camel-case properties to lower-case ones for IE9. Fixes #8346
This commit is contained in:
parent
e405419fb7
commit
c5264ce196
|
@ -3,7 +3,7 @@
|
|||
var ralpha = /alpha\([^)]*\)/i,
|
||||
ropacity = /opacity=([^)]*)/,
|
||||
rdashAlpha = /-([a-z])/ig,
|
||||
rupper = /([A-Z])/g,
|
||||
rupper = /([A-Z]|^ms)/g,
|
||||
rnumpx = /^-?\d+(?:px)?$/i,
|
||||
rnum = /^-?\d/,
|
||||
|
||||
|
|
Loading…
Reference in a new issue