aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.button.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2010-02-18 01:45:23 +0000
committerScott González <scott.gonzalez@gmail.com>2010-02-18 01:45:23 +0000
commitb848e37f2835ac4f884ece2dd37273e6266d3623 (patch)
tree7952bb4b146e2d8157563a73cf871b177fa747bf /ui/jquery.ui.button.js
parent071dc670b705f20867adc4f6127e74cfe22ba87d (diff)
downloadjquery-ui-b848e37f2835ac4f884ece2dd37273e6266d3623.tar.gz
jquery-ui-b848e37f2835ac4f884ece2dd37273e6266d3623.zip
Button: Added missing semicolons;
Diffstat (limited to 'ui/jquery.ui.button.js')
-rw-r--r--ui/jquery.ui.button.js4
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;
}