diff options
author | John Resig <jeresig@gmail.com> | 2009-01-04 15:29:27 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2009-01-04 15:29:27 +0000 |
commit | 434b87b8a233eb24ec773de801f3adb460fbd0f4 (patch) | |
tree | 5abe141c6b257f669015f04f9551d184f546b090 /src/ajax.js | |
parent | c0294278db40da764a98ea1c1506548e539213c7 (diff) | |
download | jquery-434b87b8a233eb24ec773de801f3adb460fbd0f4.tar.gz jquery-434b87b8a233eb24ec773de801f3adb460fbd0f4.zip |
Moved from the old JSMin to using YUIMin for compressing the jQuery source. Additionally landed some improvements from #3770 which dramatically reduce the filesize. The final minifed + gzipped size of jQuery went from 19817 bytes to 18063 bytes.
Diffstat (limited to 'src/ajax.js')
-rw-r--r-- | src/ajax.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ajax.js b/src/ajax.js index 6c8a22e8a..c255dfeba 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -497,7 +497,7 @@ jQuery.extend({ // Get the JavaScript object, if JSON is used. if ( type == "json" ) - data = eval("(" + data + ")"); + data = window["eval"]("(" + data + ")"); } return data; |