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.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/data/accepts.js b/src/data/accepts.js
index 291c7b475..24e2f0ef0 100644
--- a/src/data/accepts.js
+++ b/src/data/accepts.js
@@ -1,4 +1,4 @@
-define([
+define( [
"../core"
], function( jQuery ) {
@@ -6,6 +6,7 @@ define([
* Determines whether an object can have data
*/
jQuery.acceptData = function( owner ) {
+
// Accepts only:
// - Node
// - Node.ELEMENT_NODE
@@ -17,4 +18,4 @@ jQuery.acceptData = function( owner ) {
};
return jQuery.acceptData;
-});
+} );