diff options
author | Richard Gibson <richard.gibson@gmail.com> | 2012-06-15 21:01:44 -0400 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2012-06-15 21:01:44 -0400 |
commit | a101e81bde71e94170f1fa899432cbe8150910f9 (patch) | |
tree | 9d3a75a1f5f14267e8ba6e1058d2c4e81c45c8f0 /src/effects.js | |
parent | 46d680458b74fcf956f6161a2b73b6b00fc2541d (diff) | |
download | jquery-a101e81bde71e94170f1fa899432cbe8150910f9.tar.gz jquery-a101e81bde71e94170f1fa899432cbe8150910f9.zip |
Interim take on cross-module variables, closes gh-817.
Diffstat (limited to 'src/effects.js')
-rw-r--r-- | src/effects.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/effects.js b/src/effects.js index f5c1f8d47..3f0c04847 100644 --- a/src/effects.js +++ b/src/effects.js @@ -269,7 +269,7 @@ function defaultPrefilter( elem, props, opts ) { // inline-level elements accept inline-block; // block-level elements need to be inline with layout - if ( !jQuery.support.inlineBlockNeedsLayout || defaultDisplay( elem.nodeName ) === "inline" ) { + if ( !jQuery.support.inlineBlockNeedsLayout || css_defaultDisplay( elem.nodeName ) === "inline" ) { style.display = "inline-block"; } else { |