mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
19 lines
240 B
JavaScript
19 lines
240 B
JavaScript
define([
|
|
"../ajax"
|
|
], function( jQuery ) {
|
|
|
|
jQuery._evalUrl = function( url ) {
|
|
return jQuery.ajax({
|
|
url: url,
|
|
type: "GET",
|
|
dataType: "script",
|
|
async: false,
|
|
global: false,
|
|
"throws": true
|
|
});
|
|
};
|
|
|
|
return jQuery._evalUrl;
|
|
|
|
});
|