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 d69e912ff..47007130b 100644 --- a/ui/jquery.ui.button.js +++ b/ui/jquery.ui.button.js @@ -143,7 +143,7 @@ $.widget( "ui.button", { // TODO pass through original event correctly (just as 2nd argument doesn't work) $(this).trigger("click"); } - }) + }); } } @@ -167,7 +167,7 @@ $.widget( "ui.button", { if ( checked ) { this.buttonElement.addClass( "ui-state-active" ); } - this.buttonElement.attr( "aria-pressed", checked ) + this.buttonElement.attr( "aria-pressed", checked ); } else { this.buttonElement = this.element; } |