diff options
author | jaubourg <j@ubourg.net> | 2011-04-08 17:41:14 +0200 |
---|---|---|
committer | jaubourg <j@ubourg.net> | 2011-04-08 17:41:14 +0200 |
commit | 2594a935de347088cecac987c3868e9bb5f35194 (patch) | |
tree | 38d443f692f96bb65e548e5f95260201f51a5e38 /src/ajax/script.js | |
parent | 7a1c6beab0d92b1419050eb468773bf1138254a6 (diff) | |
download | jquery-2594a935de347088cecac987c3868e9bb5f35194.tar.gz jquery-2594a935de347088cecac987c3868e9bb5f35194.zip |
Applies exception in Style Guidelines regarding objects and functions when they are the last argument of a function call.
Diffstat (limited to 'src/ajax/script.js')
-rw-r--r-- | src/ajax/script.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ajax/script.js b/src/ajax/script.js index d3364ee6f..f7a918010 100644 --- a/src/ajax/script.js +++ b/src/ajax/script.js @@ -25,7 +25,7 @@ jQuery.ajaxPrefilter( "script", function( s ) { s.type = "GET"; s.global = false; } -} ); +}); // Bind script tag hack transport jQuery.ajaxTransport( "script", function(s) { @@ -84,6 +84,6 @@ jQuery.ajaxTransport( "script", function(s) { } }; } -} ); +}); })( jQuery ); |