| Index: ui/webui/resources/js/cr/ui/table/table_splitter.js
|
| diff --git a/ui/webui/resources/js/cr/ui/table/table_splitter.js b/ui/webui/resources/js/cr/ui/table/table_splitter.js
|
| index 8d56e8995a947b9342ed7094eb551beb4c01acd8..cc5bfbfdb6b90b49f06365409d402cba4241d768 100644
|
| --- a/ui/webui/resources/js/cr/ui/table/table_splitter.js
|
| +++ b/ui/webui/resources/js/cr/ui/table/table_splitter.js
|
| @@ -40,7 +40,6 @@ cr.define('cr.ui', function() {
|
| /**
|
| * Handles start of the splitter dragging.
|
| * Saves starting width of the column and changes the cursor.
|
| - * @param {Event} e Splitter event.
|
| */
|
| handleSplitterDragStart: function() {
|
| var cm = this.table_.columnModel;
|
| @@ -52,7 +51,6 @@ cr.define('cr.ui', function() {
|
|
|
| /**
|
| * Handles spliter moves. Sets new width of the column.
|
| - * @param {Event} e Splitter event.
|
| */
|
| handleSplitterDragMove: function(deltaX) {
|
| this.table_.columnModel.setWidth(this.columnIndex,
|
| @@ -61,7 +59,6 @@ cr.define('cr.ui', function() {
|
|
|
| /**
|
| * Handles end of the splitter dragging. Restores cursor.
|
| - * @param {Event} e Splitter event.
|
| */
|
| handleSplitterDragEnd: function() {
|
| this.ownerDocument.documentElement.classList.remove('col-resize');
|
|
|