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

Unified Diff: tracing/tracing/importer/import.html

Issue 1923953003: [polymer] Switches .appendChild() to Polymer.dom()...appendChild() (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Created 4 years, 8 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 | « tracing/tracing/core/test_utils.html ('k') | tracing/tracing/trace2html.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/importer/import.html
diff --git a/tracing/tracing/importer/import.html b/tracing/tracing/importer/import.html
index 8fe21637c8cfcc50d8476fadc8653bc6f0517c0a..cb231d7272b5130b2f1985722173b9e8a8a9f105 100644
--- a/tracing/tracing/importer/import.html
+++ b/tracing/tracing/importer/import.html
@@ -86,7 +86,7 @@ tr.exportTo('tr.importer', function() {
overlay.title = 'Importing...';
overlay.userCanClose = false;
overlay.msgEl = document.createElement('div');
- overlay.appendChild(overlay.msgEl);
+ Polymer.dom(overlay).appendChild(overlay.msgEl);
overlay.msgEl.style.margin = '20px';
overlay.update = function(msg) {
this.msgEl.textContent = msg;
« no previous file with comments | « tracing/tracing/core/test_utils.html ('k') | tracing/tracing/trace2html.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698