]> source.dussan.org Git - jquery.git/commitdiff
No ticket: Move jQuery.fn.size to deprecated. Close gh-1229.
authorMichał Gołębiowski <m.goleb@gmail.com>
Sun, 7 Apr 2013 11:48:46 +0000 (13:48 +0200)
committerRichard Gibson <richard.gibson@gmail.com>
Mon, 8 Apr 2013 03:22:13 +0000 (23:22 -0400)
src/core.js
src/deprecated.js
src/traversing.js

index cd174d4490b0b31e6b11265217d902326f80d97e..44e622717845407ecb2985e06ac23260428b2295 100644 (file)
@@ -208,11 +208,6 @@ jQuery.fn = jQuery.prototype = {
        // The default length of a jQuery object is 0
        length: 0,
 
-       // The number of elements contained in the matched element set
-       size: function() {
-               return this.length;
-       },
-
        toArray: function() {
                return core_slice.call( this );
        },
index 423385a91ed23621c9b9014acef5e71536ab7f2f..40f8dd6cd560901490aa3750a52a481ee1f26ffd 100644 (file)
@@ -1,4 +1,11 @@
 // Limit scope pollution from any deprecated API
 // (function() {
 
+// The number of elements contained in the matched element set
+jQuery.fn.size = function() {
+       return this.length;
+};
+
+jQuery.fn.andSelf = jQuery.fn.addBack;
+
 // })();
index 26195f1be18066fd613e0659fbd9313914273144..8d90d302aa46e81cdce6bcd2a9cd756e4fc2a236 100644 (file)
@@ -132,8 +132,6 @@ jQuery.fn.extend({
        }
 });
 
-jQuery.fn.andSelf = jQuery.fn.addBack;
-
 function sibling( cur, dir ) {
        do {
                cur = cur[ dir ];