scratch

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 57  →  ?path2? @ 58
/bower_components/jquery/src/manipulation/_evalUrl.js
@@ -0,0 +1,23 @@
define( [
"../ajax"
], function( jQuery ) {
 
"use strict";
 
jQuery._evalUrl = function( url ) {
return jQuery.ajax( {
url: url,
 
// Make this explicit, since user can override this through ajaxSetup (#11264)
type: "GET",
dataType: "script",
cache: true,
async: false,
global: false,
"throws": true
} );
};
 
return jQuery._evalUrl;
 
} );