diff options
Diffstat (limited to 'src/callbacks.js')
-rw-r--r-- | src/callbacks.js | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/src/callbacks.js b/src/callbacks.js index 140c4979e..19b3d7c1c 100644 --- a/src/callbacks.js +++ b/src/callbacks.js @@ -1,10 +1,6 @@ -define( [ - "./core", - "./core/toType", - "./var/rnothtmlwhite" -], function( jQuery, toType, rnothtmlwhite ) { - -"use strict"; +import jQuery from "./core.js"; +import toType from "./core/toType.js"; +import rnothtmlwhite from "./var/rnothtmlwhite.js"; // Convert String-formatted options into Object-formatted ones function createOptions( options ) { @@ -231,5 +227,4 @@ jQuery.Callbacks = function( options ) { return self; }; -return jQuery; -} ); +export default jQuery; |