Chromium Code Reviews| OLD | NEW |
|---|---|
| (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> | |
| 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> | |
| OLD | NEW |