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

Unified Diff: tracing/tracing/ui/side_panel/side_panel_container.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/ui/metrics_debugger_app.html ('k') | tracing/tracing/ui/timeline_track_view.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/ui/side_panel/side_panel_container.html
diff --git a/tracing/tracing/ui/side_panel/side_panel_container.html b/tracing/tracing/ui/side_panel/side_panel_container.html
index b5c73fb02034ea4a881ef192d003067e0fb91fc1..af82c2cd0b78256f7d94327259ddcc2ba90f3ca4 100644
--- a/tracing/tracing/ui/side_panel/side_panel_container.html
+++ b/tracing/tracing/ui/side_panel/side_panel_container.html
@@ -164,7 +164,7 @@ Polymer({
setAttribute('selected', true);
this.setAttribute('expanded', true);
- this.activePanelContainer_.appendChild(panel);
+ Polymer.dom(this.activePanelContainer_).appendChild(panel);
panel.rangeOfInterest = this.rangeOfInterest_;
panel.selection = this.selection_;
panel.model = this.model;
@@ -215,7 +215,7 @@ Polymer({
supported.reason;
labelEl.style.display = 'none';
}
- this.tabStrip_.appendChild(labelEl);
+ Polymer.dom(this.tabStrip_).appendChild(labelEl);
}, this);
// Restore the active panel, or collapse
« no previous file with comments | « tracing/tracing/ui/metrics_debugger_app.html ('k') | tracing/tracing/ui/timeline_track_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698