OLD | NEW |
(Empty) | |
| 1 <!-- |
| 2 -- Copyright 2015 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="chrome://resources/polymer/polymer/polymer.html"> |
| 8 |
| 9 <polymer-element name="track-list" attributes="tracks"> |
| 10 <template> |
| 11 <link rel="stylesheet" href="track_list.css"> |
| 12 |
| 13 <template id="tracks" repeat="{{track, index in tracks}}"> |
| 14 <div class="track" active?="{{track.active}}" index="{{index}}" on-click="
{{trackClicked}}"> |
| 15 <div class="data"> |
| 16 <div class="data-title">{{track.title}}</div> |
| 17 <div class="data-artist">{{track.artist}}</div> |
| 18 </div> |
| 19 </div> |
| 20 </template> |
| 21 </template> |
| 22 <script src="track_list.js"></script> |
| 23 </polymer-element> |
OLD | NEW |