mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
Trying .removeAttribute instead of the regexp to remove the filter attribute
This commit is contained in:
parent
15cd7d83a9
commit
d1c4f0e0d1
@ -2,7 +2,6 @@
|
||||
|
||||
var ralpha = /alpha\([^)]*\)/i,
|
||||
ropacity = /opacity=([^)]*)/,
|
||||
rfilter = /filter:[^;]*;?/i,
|
||||
// fixed for IE9, see #8346
|
||||
rupper = /([A-Z]|^ms)/g,
|
||||
rnumpx = /^-?\d+(?:px)?$/i,
|
||||
@ -225,7 +224,8 @@ if ( !jQuery.support.opacity ) {
|
||||
|
||||
// Setting style.filter to null, "" & " " still leave "filter:" in the cssText
|
||||
// if "filter:" is present at all, clearType is disabled, we want to avoid this
|
||||
style.cssText = style.cssText.replace( rfilter, "" );
|
||||
// style.removeAttribute is IE Only, but so apparently is this code path...
|
||||
style.removeAttribute( "filter" );
|
||||
|
||||
// if there there is no filter style applied in a css rule, we are done
|
||||
if ( currentStyle && !currentStyle.filter ) {
|
||||
|
Loading…
Reference in New Issue
Block a user