aboutsummaryrefslogtreecommitdiffstats
path: root/src/support.js
diff options
context:
space:
mode:
authorrwldrn <waldron.rick@gmail.com>2011-06-06 23:54:17 -0400
committertimmywil <tim.willison@thisismedium.com>2011-06-06 23:54:17 -0400
commit6490c10c751af6ad8cd119526db227939cdcffe9 (patch)
tree26d995774c31c4f3576d08515ecd73a691edbc23 /src/support.js
parent75203de7435b7f32c69da1dde88aa6708bf6bb7d (diff)
downloadjquery-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.js2
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;
})();