mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Release: fix revert artefacts
This commit is contained in:
parent
de30e4a73d
commit
e2af987877
@ -30,5 +30,3 @@ jQuery.fn.andSelf = jQuery.fn.addBack;
|
|||||||
|
|
||||||
} );
|
} );
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,9 +10,9 @@ jQuery.fn.extend( {
|
|||||||
var wrap;
|
var wrap;
|
||||||
|
|
||||||
if ( jQuery.isFunction( html ) ) {
|
if ( jQuery.isFunction( html ) ) {
|
||||||
return this.each(function( i ) {
|
return this.each( function( i ) {
|
||||||
jQuery( this ).wrapAll( html.call(this, i) );
|
jQuery( this ).wrapAll( html.call( this, i ) );
|
||||||
});
|
} );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( this[ 0 ] ) {
|
if ( this[ 0 ] ) {
|
||||||
|
@ -40,8 +40,8 @@ QUnit.test( "delegate/undelegate", function( assert ) {
|
|||||||
.remove();
|
.remove();
|
||||||
} );
|
} );
|
||||||
if ( jQuery.fn.size ) {
|
if ( jQuery.fn.size ) {
|
||||||
test("size()", function() {
|
QUnit.test("size()", function( assert ) {
|
||||||
expect(1);
|
assert.expect( 1 );
|
||||||
equal( jQuery("#qunit-fixture p").size(), 6, "Get Number of Elements Found" );
|
assert.equal( jQuery("#qunit-fixture p").size(), 6, "Get Number of Elements Found" );
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user