Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: lib/appSupport.js

Issue 5643346198396928: Issue 2260 - Replaced some more for..in loops with for..of fixing the UI (Closed)
Patch Set: Created April 2, 2015, 5:39 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | lib/ui.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/appSupport.js
===================================================================
--- a/lib/appSupport.js
+++ b/lib/appSupport.js
@@ -876,7 +876,7 @@
onShutdown.add(function()
{
let window = null;
- for (window in UI.applicationWindows)
+ for (window of UI.applicationWindows)
break;
if (window && menuItem)
« no previous file with comments | « no previous file | lib/ui.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld