diff options
author | Oleg <markelog@gmail.com> | 2012-12-19 23:40:24 +0400 |
---|---|---|
committer | Oleg <markelog@gmail.com> | 2012-12-24 03:03:28 +0400 |
commit | 329d5e1d0328a5e638d4041e913fe1faccd919f3 (patch) | |
tree | a550802a912873ce41820d8adb745f076673576c | |
parent | e9ea6679b250429f430ff5ece6dab3cde71bc11d (diff) | |
download | jquery-329d5e1d0328a5e638d4041e913fe1faccd919f3.tar.gz jquery-329d5e1d0328a5e638d4041e913fe1faccd919f3.zip |
Remove memory fix
-rw-r--r-- | src/manipulation.js | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/manipulation.js b/src/manipulation.js index 3a3dff165..5abb8a519 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -324,7 +324,6 @@ jQuery.fn.extend({ // Hope ajax is available... jQuery.ajax({ url: node.src, - type: "GET", dataType: "script", async: false, global: false, @@ -336,9 +335,6 @@ jQuery.fn.extend({ } } } - - // Fix #11809: Avoid leaking memory - fragment = first = null; } } @@ -568,8 +564,6 @@ jQuery.extend({ setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); } - destElements = srcElements = node = null; - // Return the cloned set return clone; }, |