| 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 d86191a9c17dec4a5e630e2dc03157368728350d..45ff813b2f4bf45c366ba033e9394581b3c263cd 100644
|
| --- a/ui/webui/resources/js/cr/ui/list_item.js
|
| +++ b/ui/webui/resources/js/cr/ui/list_item.js
|
| @@ -25,8 +25,12 @@ cr.define('cr.ui', function() {
|
| * Plain text label.
|
| * @type {string}
|
| */
|
| - get label() { return this.textContent; },
|
| - set label(label) { this.textContent = label; },
|
| + get label() {
|
| + return this.textContent;
|
| + },
|
| + set label(label) {
|
| + this.textContent = label;
|
| + },
|
|
|
| /**
|
| * This item's index in the containing list.
|
| @@ -54,8 +58,9 @@ cr.define('cr.ui', function() {
|
| * selection model. This is only used for display purpose.
|
| */
|
| cr.defineProperty(
|
| - ListItem, 'selected', cr.PropertyKind.BOOL_ATTR,
|
| - function() { this.selectionChanged(); });
|
| + ListItem, 'selected', cr.PropertyKind.BOOL_ATTR, function() {
|
| + this.selectionChanged();
|
| + });
|
|
|
| /**
|
| * Whether the item is the lead in a selection. Setting this does not update
|
|
|