Chromium Code Reviews| Index: ui/webui/resources/js/cr.js |
| diff --git a/ui/webui/resources/js/cr.js b/ui/webui/resources/js/cr.js |
| index dbcbb828a5621ad664f3b685529cd16774b5ee8f..c44091c48ab2196363b3cfc87b83d5b2143789f9 100644 |
| --- a/ui/webui/resources/js/cr.js |
| +++ b/ui/webui/resources/js/cr.js |
| @@ -75,17 +75,20 @@ var cr = function() { |
| /** |
| * Plain old JS property where the backing data is stored as a "private" |
| * field on the object. |
| + * Use only for properties of any type. |
|
Tyler Breisacher (Chromium)
2014/08/13 20:35:43
s/only //
Vitaly Pavlenko
2014/08/13 21:12:04
Done.
|
| */ |
| JS: 'js', |
| /** |
| * The property backing data is stored as an attribute on an element. |
| + * Use only for properties of type {string}. |
| */ |
| ATTR: 'attr', |
| /** |
| * The property backing data is stored as an attribute on an element. If the |
| * element has the attribute then the value is true. |
| + * Use only for properties of type {boolean}. |
| */ |
| BOOL_ATTR: 'boolAttr' |
| }; |