Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Unified Diff: ui/webui/resources/js/cr/ui/table.js

Issue 575313004: Compiling file_manager, part 2: remove all warnings not caused by Object.freeze()-like enums (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@I_file_manager
Patch Set: rebase Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/webui/resources/js/cr/ui/splitter.js ('k') | ui/webui/resources/js/cr/ui/table/table_column.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/webui/resources/js/cr/ui/table.js
diff --git a/ui/webui/resources/js/cr/ui/table.js b/ui/webui/resources/js/cr/ui/table.js
index 7e6364d25bd3ac071e1d2ec5834fa10ad3e3d3d3..fcb81ecbdf537d66b8a6bc3272ff0834c1d45670 100644
--- a/ui/webui/resources/js/cr/ui/table.js
+++ b/ui/webui/resources/js/cr/ui/table.js
@@ -216,7 +216,7 @@ cr.define('cr.ui', function() {
/**
* Ensures that a given index is inside the viewport.
- * @param {number} index The index of the item to scroll into view.
+ * @param {number} i The index of the item to scroll into view.
* @return {boolean} Whether any scrolling was needed.
*/
scrollIndexIntoView: function(i) {
@@ -261,7 +261,7 @@ cr.define('cr.ui', function() {
/**
* Sort data by the given column.
- * @param {number} index The index of the column to sort by.
+ * @param {number} i The index of the column to sort by.
*/
sort: function(i) {
var cm = this.columnModel_;
« no previous file with comments | « ui/webui/resources/js/cr/ui/splitter.js ('k') | ui/webui/resources/js/cr/ui/table/table_column.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698