]> source.dussan.org Git - jquery.git/commitdiff
Ref #13283, move .andSelf() to deprecated.js. Close gh-1170.
authorNguyen Phuc Lam <ruado1987@gmail.com>
Wed, 27 Feb 2013 03:55:36 +0000 (22:55 -0500)
committerDave Methvin <dave.methvin@gmail.com>
Wed, 27 Feb 2013 03:57:12 +0000 (22:57 -0500)
AUTHORS.txt
src/deprecated.js
src/traversing.js
test/unit/effects.js
test/unit/event.js
test/unit/queue.js
test/unit/traversing.js

index cdd78792d03dd02fe38ef1ba76ddefdad5e5c901..bf0db66da188eaee1f519014792521ada359df32 100644 (file)
@@ -161,3 +161,4 @@ Danil Somsikov <danilasomsikov@gmail.com>
 Jean Boussier <jean.boussier@gmail.com>
 Adam Coulombe <me@adam.co>
 Andrew Plummer <plummer.andrew@gmail.com>
+Nguyen Phuc Lam <ruado1987@gmail.com>
index 423385a91ed23621c9b9014acef5e71536ab7f2f..722edb006bb0bc69f540dd119fb6433df7d243ca 100644 (file)
@@ -1,4 +1,6 @@
 // Limit scope pollution from any deprecated API
 // (function() {
 
+jQuery.fn.andSelf = jQuery.fn.addBack;
+
 // })();
index 615de1f8a5810abefb6aa55af73140253e5215fe..f279dabf4e5bd19d2ce4cb870b8317a0ae11267e 100644 (file)
@@ -136,8 +136,6 @@ jQuery.fn.extend({
        }
 });
 
-jQuery.fn.andSelf = jQuery.fn.addBack;
-
 function sibling( cur, dir ) {
        while ( (cur = cur[dir]) && cur.nodeType !== 1 ) {}
 
index 791e28bcf7fc106bc3be1fb7c14286f3f6918989..e6c41619842f044fef91171ae1fbe1e13ea42437 100644 (file)
@@ -1557,7 +1557,7 @@ asyncTest( "hide, fadeOut and slideUp called on element width height and width =
 });
 
 asyncTest( "Handle queue:false promises", 10, function() {
-       var foo = jQuery( "#foo" ).clone().andSelf(),
+       var foo = jQuery( "#foo" ).clone().addBack(),
                step = 1;
 
        foo.animate({
index 97c29ffeffdb14b33c07932a991f3495a91a4036..e2aa6f93c6c5c91dd78b30d81106800d418f1055 100644 (file)
@@ -43,7 +43,7 @@ test("Handler changes and .trigger() order", function() {
        path = "";
 
        markup
-               .find( "*" ).andSelf().on( "click", function( e ) {
+               .find( "*" ).addBack().on( "click", function( e ) {
                        path += this.nodeName.toLowerCase() + " ";
                })
                .filter( "b" ).on( "click", function( e ) {
index 9cecad7a53bd6ccd04179d09da1d1b97b1d5723c..e19274039d3a04c146d04e21cc3b3a0510ba75f3 100644 (file)
@@ -184,7 +184,7 @@ test("clearQueue() clears the fx queue", function() {
 });
 
 asyncTest( "fn.promise() - called when fx queue is empty", 3, function() {
-       var foo = jQuery( "#foo" ).clone().andSelf(),
+       var foo = jQuery( "#foo" ).clone().addBack(),
                promised = false;
 
        foo.queue( function( next ) {
index 48560dbf65955f4fba608c2e7e3efb891e553d80..9d8c0d20dd6ec8a78b88b5405d9dc4eee6179f8d 100644 (file)
@@ -10,7 +10,7 @@ test( "find(String) under non-elements", function() {
 
        var j = jQuery("#nonnodes").contents();
        equal( j.find("div").length, 0, "Check node,textnode,comment to find zero divs" );
-       equal( j.find("div").andSelf().length, 3, "Check node,textnode,comment to find zero divs, but preserves pushStack" );
+       equal( j.find("div").addBack().length, 3, "Check node,textnode,comment to find zero divs, but preserves pushStack" );
 });
 
 test( "find(leading combinator)", function() {
@@ -45,7 +45,7 @@ test( "find(node|jQuery object)", function() {
        equal( $two.find( $first ).length, 0, "first is in the collection and not within two" );
        equal( $two.find( $first ).length, 0, "first is in the collection and not within two(node)" );
 
-       equal( $two.find( $foo[ 0 ] ).andSelf().length, 2, "find preserves the pushStack, see #12009" );
+       equal( $two.find( $foo[ 0 ] ).addBack().length, 2, "find preserves the pushStack, see #12009" );
 });
 
 test("is(String|undefined)", function() {