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

Side by Side Diff: Tools/GardeningServer/ui/ct-commit-list.html

Issue 345853005: Start a top-down rewrite of Garden-O-Matic in Polymer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove stray console.log Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!--
2 Copyright 2014 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file.
5 -->
6
7 <link rel="import" href="ct-commit.html">
8 <link rel="import" href="ct-commit-data.html">
9
10 <polymer-element name="ct-commit-list" attributes="first last" noscript>
esprehn 2014/07/08 16:25:05 Missing commitData
11 <template>
12 <style>
13 :host {
14 display: block;
15 }
16 </style>
17 <ct-commit-data first="{{first}}" last="{{last}}" data="{{commitData}}"></ct -commit-data>
18 <template repeat="{{commit in commitData}}">
19 <ct-commit data="{{commit}}"></ct-commit>
20 </template>
21 </template>
22 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698