diff options
author | Brandon Aaron <brandon.aaron@gmail.com> | 2009-04-21 19:09:47 +0000 |
---|---|---|
committer | Brandon Aaron <brandon.aaron@gmail.com> | 2009-04-21 19:09:47 +0000 |
commit | 17841ea24426cbd25985567cb82cf3107767c9ac (patch) | |
tree | 53cdb4e257051073694b78eb1a794455013bd79e /src/support.js | |
parent | 92a076cb2f7679043575977092be1233cb1c687f (diff) | |
download | jquery-17841ea24426cbd25985567cb82cf3107767c9ac.tar.gz jquery-17841ea24426cbd25985567cb82cf3107767c9ac.zip |
actually don't need to null out as much as i thought i did to fix that memory leak
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 dc7ad8fef..891aa7af1 100644 --- a/src/support.js +++ b/src/support.js @@ -91,7 +91,7 @@ }); // release memory in IE - root = script = div = all = a = null; + div = null; })(); jQuery.props = { |