aboutsummaryrefslogtreecommitdiffstats
path: root/src/deprecated.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/deprecated.js')
-rw-r--r--src/deprecated.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/deprecated.js b/src/deprecated.js
index 40f8dd6cd..8a9ba1b4b 100644
--- a/src/deprecated.js
+++ b/src/deprecated.js
@@ -1,11 +1,11 @@
-// Limit scope pollution from any deprecated API
-// (function() {
-
+define([
+ "./core",
+ "./traversing"
+], function( jQuery ) {
// The number of elements contained in the matched element set
jQuery.fn.size = function() {
return this.length;
};
jQuery.fn.andSelf = jQuery.fn.addBack;
-
-// })();
+});