diff options
author | jaubourg <aubourg.julian@gmail.com> | 2010-12-10 03:16:50 +0100 |
---|---|---|
committer | jaubourg <aubourg.julian@gmail.com> | 2010-12-10 03:16:50 +0100 |
commit | ab74d8e6a0810717419abb696154d034ad145f2b (patch) | |
tree | 6962e48860ba9b3180c6ddeb8feb45557560035b /src | |
parent | 3c641bd1345aa25489fc16f09d5f4709bf05b09b (diff) | |
download | jquery-ab74d8e6a0810717419abb696154d034ad145f2b.tar.gz jquery-ab74d8e6a0810717419abb696154d034ad145f2b.zip |
Fix the closure in ajax.js too.
Diffstat (limited to 'src')
-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 ceeef5eb4..da130faed 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -401,4 +401,4 @@ jQuery.support.ajax = !!testXHR; // Does this browser support crossDomain XHR requests jQuery.support.cors = testXHR && "withCredentials" in testXHR; -})(jQuery);
\ No newline at end of file +})( jQuery ); |