Skip to content

Commit 865469f

Browse files
authored
CSS: Remove the opacity CSS hook
The consequence is `.css( "opacity" )` will now return an empty string for detached elements in standard-compliant browsers and "1" in IE & the legacy Edge. That behavior is shared by most other CSS properties which we're not normalizing either. Closes gh-4593
1 parent 89a18de commit 865469f

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

src/css.js

+1-12
Original file line numberDiff line numberDiff line change
@@ -185,18 +185,7 @@ jQuery.extend( {
185185

186186
// Add in style property hooks for overriding the default
187187
// behavior of getting and setting a style property
188-
cssHooks: {
189-
opacity: {
190-
get: function( elem, computed ) {
191-
if ( computed ) {
192-
193-
// We should always get a number back from opacity
194-
var ret = curCSS( elem, "opacity" );
195-
return ret === "" ? "1" : ret;
196-
}
197-
}
198-
}
199-
},
188+
cssHooks: {},
200189

201190
// Get and set the style property on a DOM Node
202191
style: function( elem, name, value, extra ) {

0 commit comments

Comments
 (0)