diff options
author | rwldrn <waldron.rick@gmail.com> | 2011-06-06 23:54:17 -0400 |
---|---|---|
committer | timmywil <tim.willison@thisismedium.com> | 2011-06-06 23:54:17 -0400 |
commit | 6490c10c751af6ad8cd119526db227939cdcffe9 (patch) | |
tree | 26d995774c31c4f3576d08515ecd73a691edbc23 /src/support.js | |
parent | 75203de7435b7f32c69da1dde88aa6708bf6bb7d (diff) | |
download | jquery-6490c10c751af6ad8cd119526db227939cdcffe9.tar.gz jquery-6490c10c751af6ad8cd119526db227939cdcffe9.zip |
Landing pull request 401. Nulling all elements created in support.js; Fixes #9471.
More Details:
- https://github.com/jquery/jquery/pull/401
- http://bugs.jquery.com/ticket/9471
Diffstat (limited to 'src/support.js')
-rw-r--r-- | src/support.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/support.js b/src/support.js index 42108dedd..882b84a2f 100644 --- a/src/support.js +++ b/src/support.js @@ -245,7 +245,7 @@ jQuery.support = (function() { } // Null connected elements to avoid leaks in IE - marginDiv = div = input = null; + testElement = fragment = select = opt = body = marginDiv = div = input = null; return support; })(); |