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

Side by Side Diff: ui/file_manager/audio_player/elements/track_list.html

Issue 1458733003: Reland MD Audio Player. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: forcePlay -> forceToPlay Created 5 years, 1 month 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
OLDNEW
1 <!-- 1 <!--
2 -- Copyright 2015 The Chromium Authors. All rights reserved. 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 3 -- Use of this source code is governed by a BSD-style license that can be
4 -- found in the LICENSE file. 4 -- found in the LICENSE file.
5 --> 5 -->
6 6
7 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/font-roboto/roboto.html ">
8 9
9 <dom-module id="track-list"> 10 <dom-module id="track-list">
10 <link rel="import" type="css" href="track_list.css"> 11 <link rel="import" type="css" href="track_list.css">
11 <template> 12 <template>
12 <template is="dom-repeat" id="tracks" items="[[tracks]]"> 13 <template is="dom-repeat" id="tracks" items="[[tracks]]">
13 <div class="track" active$="[[item.active]]" index$="[[index]]" on-click=" trackClicked"> 14 <div class="track" active$="[[item.active]]" index$="[[index]]" on-click=" trackClicked">
15 <div class="icon"></div>
14 <div class="data"> 16 <div class="data">
15 <div class="data-title">[[item.title]]</div> 17 <div class="data-title">[[item.title]]</div>
16 <div class="data-artist">[[item.artist]]</div> 18 <div class="data-artist">[[item.artist]]</div>
17 </div> 19 </div>
18 </div> 20 </div>
19 </template> 21 </template>
20 </template> 22 </template>
21 </dom-module> 23 </dom-module>
22 24
23 <script src="track_list.js"></script> 25 <script src="track_list.js"></script>
OLDNEW
« no previous file with comments | « ui/file_manager/audio_player/elements/track_list.css ('k') | ui/file_manager/audio_player/elements/track_list.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698