aboutsummaryrefslogtreecommitdiff
path: root/contexts/data/lib/closure-library/closure/goog/ui/checkbox.js
diff options
context:
space:
mode:
Diffstat (limited to 'contexts/data/lib/closure-library/closure/goog/ui/checkbox.js')
-rw-r--r--contexts/data/lib/closure-library/closure/goog/ui/checkbox.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/contexts/data/lib/closure-library/closure/goog/ui/checkbox.js b/contexts/data/lib/closure-library/closure/goog/ui/checkbox.js
index db4d7d7..08b9a9e 100644
--- a/contexts/data/lib/closure-library/closure/goog/ui/checkbox.js
+++ b/contexts/data/lib/closure-library/closure/goog/ui/checkbox.js
@@ -93,6 +93,7 @@ goog.ui.Checkbox.prototype.getChecked = function() {
/**
* @return {boolean} Whether the checkbox is checked.
+ * @override
*/
goog.ui.Checkbox.prototype.isChecked = function() {
return this.checked_ == goog.ui.Checkbox.State.CHECKED;
@@ -118,6 +119,7 @@ goog.ui.Checkbox.prototype.isUndetermined = function() {
/**
* Sets the checked state of the checkbox.
* @param {?boolean} checked The checked state to set.
+ * @override
*/
goog.ui.Checkbox.prototype.setChecked = function(checked) {
if (checked != this.checked_) {