Fixed typo from commit 542099a278.

This commit is contained in:
John Resig 2009-12-11 11:46:38 -08:00
parent 65ebf57c1e
commit 5197ac9fc8
2 changed files with 3 additions and 3 deletions

View file

@ -163,8 +163,8 @@ jQuery.fn.extend({
jQuery.each({ jQuery.each({
removeAttr: function( name ) { removeAttr: function( name ) {
jQuery.attr( this, name, "" ); if ( this.nodeType === 1 ) {
if (this.nodeType == 1) { this[ jQuery.isXMLDoc( this ) ? name : jQuery.props[ name ] || name ] = null;
this.removeAttribute( name ); this.removeAttribute( name );
} }
}, },

View file

@ -680,7 +680,7 @@ function trigger( type, elem, args ) {
if ( !jQuery.support.focusBubbles ) { if ( !jQuery.support.focusBubbles ) {
jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ){ jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ){
event.special[ orig ] = { jQuery.event.special[ orig ] = {
setup: function() { setup: function() {
jQuery.event.add( this, fix, ieHandler ); jQuery.event.add( this, fix, ieHandler );
}, },