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

Unified Diff: appengine/sheriff_o_matic/ui/ct-builder-grid.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-builder-grid.html
diff --git a/appengine/sheriff_o_matic/ui/ct-builder-grid.html b/appengine/sheriff_o_matic/ui/ct-builder-grid.html
index 6960b899d6143ab06955febf23ae3db185383f4b..a850ba1702070de8dd6d9c56345fa16a3d6f2b34 100644
--- a/appengine/sheriff_o_matic/ui/ct-builder-grid.html
+++ b/appengine/sheriff_o_matic/ui/ct-builder-grid.html
@@ -2,17 +2,21 @@
Copyright 2014 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="../model/ct-builder.html">
+--><html><head><link rel="import" href="../model/ct-builder.html">
<link rel="import" href="../model/ct-builder-list.html">
<link rel="import" href="ct-builder.html">
-<polymer-element name="ct-builder-grid" attributes="builderList" noscript>
+<dom-module id="ct-builder-grid">
<template>
<span style="font-weight: bold">Bots:</span>
- <template repeat="{{ builder in builderList.builders }}">
+ <template is="dom-repeat" items="{{builderList.builders}}" as="builder">
<ct-builder builder="{{ builder }}"></ct-builder>
</template>
</template>
-</polymer-element>
+ <script>
+ Polymer({
+ is: 'ct-builder-grid',
+ properties: { builderList: { notify: true } }
+ });
+ </script>
+</dom-module>
« no previous file with comments | « appengine/sheriff_o_matic/ui/ct-builder-failure-card.html ('k') | appengine/sheriff_o_matic/ui/ct-builder-status.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698