72985fb
click here to add a description
click here to add a homepage
The official jQuery user interface library. — Read more
http://jqueryui.com/
This URL has Read+Write access
Core: Don't use $.style since it doesn't exist in jQuery 1.3.2. Fixes #6196 - outerWidth() setter broken with jQuery 1.3.2.
Showing 1 changed file with 2 additions and 2 deletions.
@@ -158,7 +158,7 @@ $.each( [ "Width", "Height" ], function( i, name ) {
}
return this.each(function() {
- $.style( this, type, reduce( this, size ) + "px" );
+ $( this ).css( type, reduce( this, size ) + "px" );
});
};
@@ -168,7 +168,7 @@ $.each( [ "Width", "Height" ], function( i, name ) {
- $.style( this, type, reduce( this, size, true, margin ) + "px" );
+ $( this).css( type, reduce( this, size, true, margin ) + "px" );
72985fb