Run property names through propFix in removeProp

1.7/enhancement_8685
timmywil 2011-05-04 11:40:46 -04:00
parent 480b88ca37
commit 3ed4b22073
1 changed files with 1 additions and 0 deletions

View File

@ -26,6 +26,7 @@ jQuery.fn.extend({
},
removeProp: function( name ) {
name = jQuery.propFix[ name ] || name;
return this.each(function() {
// try/catch handles cases where IE balks (such as removing a property on window)
try {