aboutsummaryrefslogtreecommitdiffstats
path: root/src/callbacks.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/callbacks.js')
-rw-r--r--src/callbacks.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/callbacks.js b/src/callbacks.js
index 19b3d7c1c..e4f05e798 100644
--- a/src/callbacks.js
+++ b/src/callbacks.js
@@ -1,6 +1,6 @@
-import jQuery from "./core.js";
-import toType from "./core/toType.js";
-import rnothtmlwhite from "./var/rnothtmlwhite.js";
+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 ) {
@@ -227,4 +227,4 @@ jQuery.Callbacks = function( options ) {
return self;
};
-export default jQuery;
+export { jQuery, jQuery as $ };