aboutsummaryrefslogtreecommitdiffstats
path: root/src/attributes/prop.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/attributes/prop.js')
-rw-r--r--src/attributes/prop.js13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/attributes/prop.js b/src/attributes/prop.js
index 651d9e215..d58adf369 100644
--- a/src/attributes/prop.js
+++ b/src/attributes/prop.js
@@ -1,11 +1,8 @@
-define( [
- "../core",
- "../core/access",
- "../var/isIE",
- "../selector"
-], function( jQuery, access, isIE ) {
+import jQuery from "../core.js";
+import access from "../core/access.js";
+import isIE from "../var/isIE.js";
-"use strict";
+import "../selector.js";
var rfocusable = /^(?:input|select|textarea|button)$/i,
rclickable = /^(?:a|area)$/i;
@@ -136,5 +133,3 @@ jQuery.each( [
], function() {
jQuery.propFix[ this.toLowerCase() ] = this;
} );
-
-} );