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

Unified Diff: dashboard/dashboard/elements/bisect-status.html

Issue 1924873002: [Polymer10] Migrate bisect-status.html to Polymer 1.0 (Closed) Base URL: https://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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dashboard/dashboard/elements/bisect-status.html
diff --git a/dashboard/dashboard/elements/bisect-status.html b/dashboard/dashboard/elements/bisect-status.html
index 30ec4151b6087b24bf6dd7fdb057689d68719017..18b8a61da74723ce07dc2932db4249d555ee61e6 100644
--- a/dashboard/dashboard/elements/bisect-status.html
+++ b/dashboard/dashboard/elements/bisect-status.html
@@ -9,7 +9,7 @@ The bisect-status elements indicate whether the last bisect job
for a bug succeeded or failed, or is currently in progress. */
-->
-<polymer-element name="bisect-status">
+<dom-module id="bisect-status">
<template>
<style>
.bisect-status {
@@ -39,10 +39,14 @@ for a bug succeeded or failed, or is currently in progress. */
</template>
<script>
'use strict';
- Polymer('bisect-status', {
- publish: {
- status: null
+ Polymer({
+ is: 'bisect-status',
+ properties: {
+ status: {
+ type: String,
+ value: null
+ }
}
});
</script>
-</polymer-element>
+</dom-module>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698