Make sure that mixed case alpha filters are handled correctly in IE. Fixes #5632.

This commit is contained in:
John Resig
2010-09-28 08:57:20 -07:00
parent 558d96b42a
commit 9190d4fd60
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
(function( jQuery ) {
var ralpha = /alpha\([^)]*\)/,
var ralpha = /alpha\([^)]*\)/i,
ropacity = /opacity=([^)]*)/,
rdashAlpha = /-([a-z])/ig,
rupper = /([A-Z])/g,