aboutsummaryrefslogtreecommitdiffstats
path: root/src/manipulation/_evalUrl.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/manipulation/_evalUrl.js')
-rw-r--r--src/manipulation/_evalUrl.js10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/manipulation/_evalUrl.js b/src/manipulation/_evalUrl.js
index 9a4d2ac6f..54133fc9b 100644
--- a/src/manipulation/_evalUrl.js
+++ b/src/manipulation/_evalUrl.js
@@ -1,8 +1,4 @@
-define( [
- "../ajax"
-], function( jQuery ) {
-
-"use strict";
+import jQuery from "../ajax.js";
jQuery._evalUrl = function( url, options ) {
return jQuery.ajax( {
@@ -27,6 +23,4 @@ jQuery._evalUrl = function( url, options ) {
} );
};
-return jQuery._evalUrl;
-
-} );
+export default jQuery._evalUrl;