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

Unified Diff: ui/file_manager/file_manager/foreground/js/file_manager.js

Issue 618563002: Files.app: Fix typo in onUnload_ handler. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/file_manager/foreground/js/file_manager.js
diff --git a/ui/file_manager/file_manager/foreground/js/file_manager.js b/ui/file_manager/file_manager/foreground/js/file_manager.js
index f132de4af8ba32b7a212c30557d29babffae9aa5..504fc4c85a21c0f292c08abca319c4ec2539a821 100644
--- a/ui/file_manager/file_manager/foreground/js/file_manager.js
+++ b/ui/file_manager/file_manager/foreground/js/file_manager.js
@@ -2832,9 +2832,9 @@ var BOTTOM_MARGIN_FOR_PREVIEW_PANEL_PX = 52;
if (this.volumeManager_)
this.volumeManager_.dispose();
for (var i = 0;
- i < this.fileTransferController_.pendingTaskId.length;
+ i < this.fileTransferController_.pendingTaskIds.length;
i++) {
- var taskId = this.fileTransferController_.pendingTaskId[i];
+ var taskId = this.fileTransferController_.pendingTaskIds[i];
var item =
this.backgroundPage_.background.progressCenter.getItemById(taskId);
item.message = '';
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698