]> 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:29:36 +0000 (23:29 -0400)
(cherry picked from commit e3777b64377947b7222a2050aee7f2ec371faef9)

src/core.js
src/deprecated.js

index a35e79893ffca913c932826d2926aff4324bb9d0..265f0bc4a547b1daaed6f62376c337c1fbee7704 100644 (file)
@@ -179,11 +179,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 722edb006bb0bc69f540dd119fb6433df7d243ca..40f8dd6cd560901490aa3750a52a481ee1f26ffd 100644 (file)
@@ -1,6 +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;
 
 // })();