]> source.dussan.org Git - jquery.git/commitdiff
Convert all jQuery.removeData(foo, bar, true) calls to jQuery._remove(foo, bar)
authorRick Waldron <waldron.rick@gmail.com>
Tue, 16 Oct 2012 18:14:09 +0000 (14:14 -0400)
committerRick Waldron <waldron.rick@gmail.com>
Tue, 16 Oct 2012 18:14:37 +0000 (14:14 -0400)
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
test/unit/attributes.js
test/unit/dimensions.js
test/unit/effects.js
test/unit/queue.js

index 71ac8c506e026ad16ece4554d8dc520491777b25..1c878f37a8fa44c5cab09f3264799e9701471609 100644 (file)
@@ -1238,7 +1238,7 @@ var testToggleClass = function(valueObj) {
 
        // Cleanup
        e.removeClass("testD");
-       jQuery.removeData( e[ 0 ], "__className__", true );
+       jQuery._removeData( e[ 0 ], "__className__" );
 };
 
 test( "toggleClass(String|boolean|undefined[, boolean])", function() {
@@ -1299,7 +1299,7 @@ test( "toggleClass(Fucntion[, boolean]) with incoming value", function() {
 
        // Cleanup
        e.removeClass("test");
-       jQuery.removeData( e[ 0 ], "__className__", true );
+       jQuery._removeData( e[ 0 ], "__className__" );
 });
 
 test( "addClass, removeClass, hasClass", function() {
index 2e5c6557d92de3a75105bd6b1222638f4333df04..f0e7974c9f15f86d8eff63116576d13fe1464e9c 100644 (file)
@@ -50,7 +50,7 @@ var testWidth = function( val ) {
 
        equal( jQuery(window).width(), document.documentElement.clientWidth, "Window width is equal to width reported by window/document." );
 
-       jQuery.removeData($div[0], "olddisplay", true);
+       jQuery._removeData( $div[0], "olddisplay" );
 };
 
 test("width()", function() {
@@ -101,7 +101,7 @@ var testHeight = function( val ) {
 
        equal( jQuery(window).height(), document.documentElement.clientHeight, "Window width is equal to width reported by window/document." );
 
-       jQuery.removeData($div[0], "olddisplay", true);
+       jQuery._removeData( $div[0], "olddisplay" );
 };
 
 test("height()", function() {
@@ -156,7 +156,7 @@ test("innerWidth()", function() {
        equal( div.innerWidth(), 0, "Make sure that disconnected nodes are handled." );
 
        div.remove();
-       jQuery.removeData($div[0], "olddisplay", true);
+       jQuery._removeData( $div[0], "olddisplay" );
 });
 
 test("innerHeight()", function() {
@@ -191,7 +191,7 @@ test("innerHeight()", function() {
        equal( div.innerHeight(), 0, "Make sure that disconnected nodes are handled." );
 
        div.remove();
-       jQuery.removeData($div[0], "olddisplay", true);
+       jQuery._removeData( $div[0], "olddisplay" );
 });
 
 test("outerWidth()", function() {
@@ -229,7 +229,7 @@ test("outerWidth()", function() {
        equal( div.outerWidth(), 0, "Make sure that disconnected nodes are handled." );
 
        div.remove();
-       jQuery.removeData($div[0], "olddisplay", true);
+       jQuery._removeData( $div[0], "olddisplay" );
 });
 
 test("child of a hidden elem (or unconnected node) has accurate inner/outer/Width()/Height()  see #9441 #9300", function() {
@@ -375,7 +375,7 @@ test("outerHeight()", function() {
        equal( div.outerHeight(), 0, "Make sure that disconnected nodes are handled." );
 
        div.remove();
-       jQuery.removeData($div[0], "olddisplay", true);
+       jQuery._removeData( $div[0], "olddisplay" );
 });
 
 test("passing undefined is a setter #5571", function() {
index a2dbb06b235be5ade27cbefd45619f0403c620f3..814f94ad0c5ab3b6780a10ae0129932a59236e0c 100644 (file)
@@ -1014,7 +1014,7 @@ jQuery.checkState = function() {
        });
 
        // manually clean data on modified element
-       jQuery.removeData( this, "olddisplay", true );
+       jQuery._removeData( this, "olddisplay" );
 
        start();
 };
@@ -1148,7 +1148,7 @@ function( method, defProp ) {
                                                        equal( defProp( $elem ), startVal, "After doing .stop() halfway through show, check that state has been saved for returning to original property value." );
 
                                                        // Remove olddisplay data from .hide() call
-                                                       jQuery.removeData( this, "olddisplay", true );
+                                                       jQuery._removeData( this, "olddisplay" );
                                                        start();
                                                });
                                        }, animTime / 2);
@@ -1498,7 +1498,7 @@ test( "animate should set display for disconnected nodes", function() {
 
        // cleanup
        jQuery.each( elems, function() {
-               jQuery.removeData( this[ 0 ], "olddisplay", true );
+               jQuery._removeData( this[ 0 ], "olddisplay" );
        });
 
        stop();
@@ -1515,7 +1515,7 @@ test( "animate should set display for disconnected nodes", function() {
                        var callback = [function () {
                                        strictEqual( this.style.display, "block", "set display to block with " + name );
 
-                                       jQuery.removeData( this, "olddisplay", true );
+                                       jQuery._removeData( this, "olddisplay" );
 
                                        if ( ++i === 14 ) {
                                                start();
index 5307bfd2b6e07adf77d214bbc8614abeb1012d4f..692975469a1386297e64456ddca1e64cd9108022 100644 (file)
@@ -119,7 +119,7 @@ test("callbacks keep their place in the queue", function() {
 
        div.promise("fx").done(function() {
                equal(counter, 4, "Deferreds resolved");
-               jQuery.removeData( div[0], "olddisplay", true );
+               jQuery._removeData( div[0], "olddisplay" );
                start();
        });
 });