| 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>
|
|
|