Index: ui/webui/resources/js/cr/ui/table/table_column.js |
diff --git a/ui/webui/resources/js/cr/ui/table/table_column.js b/ui/webui/resources/js/cr/ui/table/table_column.js |
index 5977383a6814c3bc80f3ab84d7b78c1983c3654b..c5febceeebc117a569834c6f98d11caecad529d1 100644 |
--- a/ui/webui/resources/js/cr/ui/table/table_column.js |
+++ b/ui/webui/resources/js/cr/ui/table/table_column.js |
@@ -75,14 +75,18 @@ cr.define('cr.ui.table', function() { |
* The width of the column. Hidden columns have zero width. |
* @type {number} |
*/ |
- get width() { return this.visible_ ? this.width_ : 0; }, |
+ get width() { |
+ return this.visible_ ? this.width_ : 0; |
+ }, |
/** |
* The width of the column, disregarding visibility. For hidden columns, |
* this would be the width of the column if it were to be made visible. |
* @type {number} |
*/ |
- get absoluteWidth() { return this.width_; }, |
+ get absoluteWidth() { |
+ return this.width_; |
+ }, |
}; |
/** |