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

Unified Diff: dashboard/dashboard/elements/base-chart.html

Issue 1929563002: [Polymer10] Convert alerts-table.html to Polymer 1.0 (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Change name to id 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
Index: dashboard/dashboard/elements/base-chart.html
diff --git a/dashboard/dashboard/elements/base-chart.html b/dashboard/dashboard/elements/base-chart.html
index 50281e29fd6d336ef24a49a87d6b856dea6aea7d..3391a52ae1efb44ff9cc46b486b4d0b3db23ccec 100644
--- a/dashboard/dashboard/elements/base-chart.html
+++ b/dashboard/dashboard/elements/base-chart.html
@@ -5,10 +5,16 @@ Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
-<polymer-element name="base-chart" attributes="chartTitle units flotData">
+<dom-module id="base-chart" attributes="chartTitle units flotData">
dtu 2016/04/27 17:34:25 Change these to properties.
<script>
'use strict';
- Polymer('base-chart', {
+ Polymer({
+
+ is: 'base-chart',
+ properties: {
+
+ },
+
getChartOptions: function() {
return {};
},

Powered by Google App Engine
This is Rietveld 408576698