diff options
Diffstat (limited to 'ui/jquery.ui.button.js')
-rw-r--r-- | ui/jquery.ui.button.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/jquery.ui.button.js b/ui/jquery.ui.button.js index be0af7ecd..ff2c1ebb6 100644 --- a/ui/jquery.ui.button.js +++ b/ui/jquery.ui.button.js @@ -311,7 +311,7 @@ $.widget( "ui.button", { $.widget( "ui.buttonset", { _create: function() { - this.element.addClass( "ui-button-set" ); + this.element.addClass( "ui-buttonset" ); this._init(); }, @@ -349,7 +349,7 @@ $.widget( "ui.buttonset", { }, destroy: function() { - this.element.removeClass( "ui-button-set" ); + this.element.removeClass( "ui-buttonset" ); this.buttons .map(function() { return $( this ).button( "widget" )[ 0 ]; |