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

Unified Diff: lib/typedItCollector.js

Issue 8771075: Fixed merge of domains and savedDomains (Closed)
Patch Set: Created Nov. 8, 2012, 2:46 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/typedItCollector.js
===================================================================
--- a/lib/typedItCollector.js
+++ b/lib/typedItCollector.js
@@ -173,7 +173,8 @@
request.addEventListener("load", function(event)
{
if (event.target.status != 200)
- domains = domains.concat(savedDomains);
+ for (var i in savedDomains)
+ domains[i] = savedDomains[i];
}, false);
request.send(postData);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld