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

Unified Diff: appengine/sheriff_o_matic/ui/ct-alert-extension.html

Issue 1315693002: SoM: upgrade Polymer from 0.5 to 1.0 Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: get bower_components from polymer_1.0.4 Created 5 years, 4 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: appengine/sheriff_o_matic/ui/ct-alert-extension.html
diff --git a/appengine/sheriff_o_matic/ui/ct-alert-extension.html b/appengine/sheriff_o_matic/ui/ct-alert-extension.html
index c772a6d5c4a50c06489c0ce1f47940dd54ef3ead..175c2b4f109677a18aa84fbb2b0e4041f2175306 100644
--- a/appengine/sheriff_o_matic/ui/ct-alert-extension.html
+++ b/appengine/sheriff_o_matic/ui/ct-alert-extension.html
@@ -2,18 +2,26 @@
Copyright 2015 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
--->
-<link rel="import" href="ct-build-failure-ext.html">
+--><html><head><link rel="import" href="ct-build-failure-ext.html">
-<polymer-element name="ct-alert-extension" attributes="type extension">
+<dom-module id="ct-alert-extension">
<template if="{{type == 'buildfailure'}}">
<ct-build-failure-ext failure="{{ extension }}"></ct-build-failure-ext>
</template>
<script>
Polymer({
- type: null,
- extension: null
+ is: 'ct-alert-extension',
+ properties: {
+ extension: {
+ value: null,
+ notify: true
+ },
+ type: {
+ value: null,
+ notify: true
+ }
+ }
});
</script>
-</polymer-element>
+</dom-module>
« no previous file with comments | « appengine/sheriff_o_matic/ui/ct-alert-card-buttons.html ('k') | appengine/sheriff_o_matic/ui/ct-alerts.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698