aboutsummaryrefslogtreecommitdiffstats
path: root/src/effects.js
diff options
context:
space:
mode:
authorRichard Gibson <richard.gibson@gmail.com>2012-06-15 21:01:44 -0400
committerDave Methvin <dave.methvin@gmail.com>2012-06-15 21:01:44 -0400
commita101e81bde71e94170f1fa899432cbe8150910f9 (patch)
tree9d3a75a1f5f14267e8ba6e1058d2c4e81c45c8f0 /src/effects.js
parent46d680458b74fcf956f6161a2b73b6b00fc2541d (diff)
downloadjquery-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.js2
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 {