diff options
author | Chris Antaki <ChrisAntaki@gmail.com> | 2014-07-27 13:20:19 -0700 |
---|---|---|
committer | Oleg Gaidarenko <markelog@gmail.com> | 2014-09-02 20:35:49 +0400 |
commit | 835e8c4ae39f09d11ad42d24e0210bebfa8e8320 (patch) | |
tree | 014aa92524716548c084d3db66ee447236b3a043 /src/effects | |
parent | b59b819ffec6e2b3171625e45d33e61ff7b9dbfe (diff) | |
download | jquery-835e8c4ae39f09d11ad42d24e0210bebfa8e8320.tar.gz jquery-835e8c4ae39f09d11ad42d24e0210bebfa8e8320.zip |
Core: Drop strundefined variable
Ref 29838b6cab6f2e508f3e9692f32918c72b1a504b
Closes gh-1628
Diffstat (limited to 'src/effects')
-rw-r--r-- | src/effects/support.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/effects/support.js b/src/effects/support.js index 3ef7261d5..c3ba17b5f 100644 --- a/src/effects/support.js +++ b/src/effects/support.js @@ -1,7 +1,6 @@ define([ - "../var/strundefined", "../var/support" -], function( strundefined, support ) { +], function( support ) { (function() { var shrinkWrapBlocksVal; @@ -31,7 +30,7 @@ define([ // Support: IE6 // Check if elements with layout shrink-wrap their children - if ( typeof div.style.zoom !== strundefined ) { + if ( typeof div.style.zoom !== "undefined" ) { // Reset CSS: box-sizing; display; margin; border div.style.cssText = // Support: Firefox<29, Android 2.3 |