3 ], function( jQuery
) {
7 jQuery
._evalUrl = function( url
) {
11 // Make this explicit, since user can override this through ajaxSetup (#11264)
18 // Only evaluate the response if it is successful (gh-4126)
19 // dataFilter is not invoked for failure responses, so using it instead
20 // of the default converter is kludgy but it works.
22 "text script": function() {}
24 dataFilter: function( response
) {
25 jQuery
.globalEval( response
);
30 return jQuery
._evalUrl
;