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

Side by Side Diff: ui/file_manager/audio_player/elements/track_info_panel.js

Issue 1657623002: Implement "expand/collapse artwork" button in audio player. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sorting css prop. Created 4 years, 10 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 (function() { 5 (function() {
6 'use strict'; 6 'use strict';
7 7
8 Polymer({ 8 Polymer({
9 is: 'track-info-panel', 9 is: 'track-info-panel',
10 10
11 properties: { 11 properties: {
12 track: { 12 track: {
13 type: Object, 13 type: Object,
14 value: null 14 value: null
15 }, 15 },
16 16
17 expanded: { 17 expanded: {
18 type: Boolean, 18 type: Boolean,
19 value: false, 19 value: false,
20 notify: true 20 notify: true,
21 reflectToAttribute: true
22 },
23
24 artworkAvailable: {
25 type: Boolean,
26 value: false,
27 reflectToAttribute: true
21 } 28 }
22 }, 29 },
23 }); 30 });
24 })(); // Anonymous closure 31 })(); // Anonymous closure
OLDNEW
« no previous file with comments | « ui/file_manager/audio_player/elements/track_info_panel.html ('k') | ui/file_manager/audio_player/js/audio_player.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698