Set async to true instead of async (prop vs. attr). Closes gh-1039

This commit is contained in:
Timo Tijhof 2012-11-21 21:47:59 -05:00 committed by Rick Waldron
parent bb570fc373
commit 4fed8eb86d

View File

@ -40,7 +40,7 @@ jQuery.ajaxTransport( "script", function(s) {
script = document.createElement( "script" );
script.async = "async";
script.async = true;
if ( s.scriptCharset ) {
script.charset = s.scriptCharset;