Index: ui/webui/resources/cr_elements/v0_8/cr_checkbox/cr_checkbox.js |
diff --git a/ui/webui/resources/cr_elements/v0_8/cr_checkbox/cr_checkbox.js b/ui/webui/resources/cr_elements/v0_8/cr_checkbox/cr_checkbox.js |
index dcf12a0d4ff53499e7f9be39852abdf3972d69e4..aac89679e0e1298244887d4b9cb8cca604b1efc2 100644 |
--- a/ui/webui/resources/cr_elements/v0_8/cr_checkbox/cr_checkbox.js |
+++ b/ui/webui/resources/cr_elements/v0_8/cr_checkbox/cr_checkbox.js |
@@ -22,23 +22,16 @@ Polymer({ |
properties: { |
/** |
* Gets or sets the state. `true` is checked and `false` is unchecked. |
- * |
- * @attribute checked |
- * @type {boolean} |
- * @default false |
*/ |
checked: { |
type: Boolean, |
value: false, |
+ notify: true, |
reflectToAttribute: true |
}, |
/** |
* If true, the user cannot interact with this element. |
- * |
- * @attribute disabled |
- * @type {boolean} |
- * @default false |
*/ |
disabled: { |
type: Boolean, |