aboutsummaryrefslogtreecommitdiffstats
path: root/src/data/accepts.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/data/accepts.js')
-rw-r--r--src/data/accepts.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/data/accepts.js b/src/data/accepts.js
index 6e0b1b518..ea1b013c7 100644
--- a/src/data/accepts.js
+++ b/src/data/accepts.js
@@ -1,4 +1,4 @@
-define([
+define( [
"../core"
], function( jQuery ) {
@@ -6,7 +6,7 @@ define([
* Determines whether an object can have data
*/
jQuery.acceptData = function( elem ) {
- var noData = jQuery.noData[ (elem.nodeName + " ").toLowerCase() ],
+ var noData = jQuery.noData[ ( elem.nodeName + " " ).toLowerCase() ],
nodeType = +elem.nodeType || 1;
// Do not set data on non-element DOM nodes because it will not be cleared (#8335).
@@ -14,8 +14,8 @@ jQuery.acceptData = function( elem ) {
false :
// Nodes accept data unless otherwise specified; rejection can be conditional
- !noData || noData !== true && elem.getAttribute("classid") === noData;
+ !noData || noData !== true && elem.getAttribute( "classid" ) === noData;
};
return jQuery.acceptData;
-});
+} );