diff options
author | Richard Worth <rdworth@gmail.com> | 2010-03-17 13:16:40 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2010-03-17 13:16:40 +0000 |
commit | 92fe5e922538942427045d055ddf2607e9122ea8 (patch) | |
tree | 36e874ef3248798c1162126e9fb6ef1013f59d3a /ui | |
parent | 2a8271c7016be902aed15cd2ccadc23164159a8d (diff) | |
download | jquery-ui-92fe5e922538942427045d055ddf2607e9122ea8.tar.gz jquery-ui-92fe5e922538942427045d055ddf2607e9122ea8.zip |
Fixed #5362 - Buttonset class should be ui-buttonset because buttonset is one word
Diffstat (limited to 'ui')
-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 ]; |