Deprecated: Drop size and andSelf methods

Fixes gh-1749
Closes gh-1822
This commit is contained in:
Michał Gołębiowski 2014-10-30 01:18:42 +01:00
parent 5bc1ddc5cc
commit f110360f65
2 changed files with 1 additions and 18 deletions

View File

@ -1,13 +1,2 @@
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;
define(function() {
});

View File

@ -1,8 +1,2 @@
module("deprecated", { teardown: moduleTeardown });
if ( jQuery.fn.size ) {
test("size()", function() {
expect(1);
equal( jQuery("#qunit-fixture p").size(), 6, "Get Number of Elements Found" );
});
}