Index: ui/webui/resources/js/cr/ui/table/table_header.js |
diff --git a/ui/webui/resources/js/cr/ui/table/table_header.js b/ui/webui/resources/js/cr/ui/table/table_header.js |
index 053448bb8ab6ed1c8078162349e44e9c38365489..d82394b8e7b21ff374ba953cc4a82b24fe1f117a 100644 |
--- a/ui/webui/resources/js/cr/ui/table/table_header.js |
+++ b/ui/webui/resources/js/cr/ui/table/table_header.js |
@@ -64,7 +64,9 @@ cr.define('cr.ui.table', function() { |
batchCount_: 0, |
- startBatchUpdates: function() { this.batchCount_++; }, |
+ startBatchUpdates: function() { |
+ this.batchCount_++; |
+ }, |
endBatchUpdates: function() { |
this.batchCount_--; |
@@ -180,7 +182,9 @@ cr.define('cr.ui.table', function() { |
* @param {number} index The index of the column to sort by. |
*/ |
createSortFunction_: function(index) { |
- return function() { this.table_.sort(index); }.bind(this); |
+ return function() { |
+ this.table_.sort(index); |
+ }.bind(this); |
}, |
/** |
@@ -221,7 +225,9 @@ cr.define('cr.ui.table', function() { |
* @param {number} index Column index. |
* @param {Event} e The double click event. |
*/ |
- handleDblClick_: function(index, e) { this.table_.fitColumn(index); }, |
+ handleDblClick_: function(index, e) { |
+ this.table_.fitColumn(index); |
+ }, |
/** |
* Determines whether a full redraw is required. |