| Index: ui/webui/resources/js/cr/ui/list_item.js
|
| diff --git a/ui/webui/resources/js/cr/ui/list_item.js b/ui/webui/resources/js/cr/ui/list_item.js
|
| index e548a8080186febe25af62b5dc25a7e0313748e7..a670a1f27f424f5fffc8623a2abbcedb3c5c5445 100644
|
| --- a/ui/webui/resources/js/cr/ui/list_item.js
|
| +++ b/ui/webui/resources/js/cr/ui/list_item.js
|
| @@ -6,6 +6,7 @@ cr.define('cr.ui', function() {
|
|
|
| /**
|
| * Creates a new list item element.
|
| + * @param {string} opt_label The text label for the item.
|
| * @constructor
|
| * @extends {HTMLLIElement}
|
| */
|
| @@ -48,6 +49,7 @@ cr.define('cr.ui', function() {
|
| /**
|
| * Whether the item is selected. Setting this does not update the underlying
|
| * selection model. This is only used for display purpose.
|
| + * @type {boolean}
|
| */
|
| cr.defineProperty(ListItem, 'selected', cr.PropertyKind.BOOL_ATTR,
|
| function() {
|
| @@ -57,12 +59,13 @@ cr.define('cr.ui', function() {
|
| /**
|
| * Whether the item is the lead in a selection. Setting this does not update
|
| * the underlying selection model. This is only used for display purpose.
|
| + * @type {boolean}
|
| */
|
| cr.defineProperty(ListItem, 'lead', cr.PropertyKind.BOOL_ATTR);
|
|
|
| /**
|
| * This item's index in the containing list.
|
| - * type {number}
|
| + * @type {number}
|
| */
|
| cr.defineProperty(ListItem, 'listIndex');
|
|
|
|
|