diff options
author | Oleg Gaidarenko <markelog@gmail.com> | 2015-12-22 20:53:02 +0300 |
---|---|---|
committer | Oleg Gaidarenko <markelog@gmail.com> | 2015-12-22 20:53:02 +0300 |
commit | d314ee8fa3e610032a13922742a46d19a671a9af (patch) | |
tree | 23fa46371df586f912ded85a1da7d6b4be667239 | |
parent | bc53033080f1b3ea47ce722d6e375ac44e8f694d (diff) | |
download | jquery-d314ee8fa3e610032a13922742a46d19a671a9af.tar.gz jquery-d314ee8fa3e610032a13922742a46d19a671a9af.zip |
Revert "Ajax: simplify one ajax call and add explanatory comment"
This reverts commit 4b3e63066dd480d07b9ce8057cb0c02b8ad7e990.
-rw-r--r-- | src/ajax/script.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ajax/script.js b/src/ajax/script.js index 1d372872b..d6094f520 100644 --- a/src/ajax/script.js +++ b/src/ajax/script.js @@ -54,6 +54,8 @@ jQuery.ajaxTransport( "script", function( s ) { script = document.createElement( "script" ); + script.async = true; + if ( s.scriptCharset ) { script.charset = s.scriptCharset; } |