| Index: ui/file_manager/file_manager/foreground/js/metadata_box_controller.js
|
| diff --git a/ui/file_manager/file_manager/foreground/js/metadata_box_controller.js b/ui/file_manager/file_manager/foreground/js/metadata_box_controller.js
|
| index a7aa68554b41f249f1c202a88c6b5c97e881842a..ae8d06cf04b41301c99fffd2812d794eff7c968b 100644
|
| --- a/ui/file_manager/file_manager/foreground/js/metadata_box_controller.js
|
| +++ b/ui/file_manager/file_manager/foreground/js/metadata_box_controller.js
|
| @@ -142,7 +142,10 @@ MetadataBoxController.prototype.onGeneralMetadataLoaded_ = function(
|
| 'imageWidth',
|
| 'mediaAlbum',
|
| 'mediaArtist',
|
| - 'mediaTitle'
|
| + 'mediaDuration',
|
| + 'mediaGenre',
|
| + 'mediaTitle',
|
| + 'mediaTrack',
|
| ])
|
| .then(function(items) {
|
| var item = items[0];
|
| @@ -150,7 +153,10 @@ MetadataBoxController.prototype.onGeneralMetadataLoaded_ = function(
|
| this.metadataBox_.imageWidth = item.imageWidth || 0;
|
| this.metadataBox_.mediaAlbum = item.mediaAlbum || '';
|
| this.metadataBox_.mediaArtist = item.mediaArtist || '';
|
| + this.metadataBox_.mediaDuration = item.mediaDuration || 0;
|
| + this.metadataBox_.mediaGenre = item.mediaGenre || '';
|
| this.metadataBox_.mediaTitle = item.mediaTitle || '';
|
| + this.metadataBox_.mediaTrack = item.mediaTrack || 0;
|
| }.bind(this));
|
| }
|
| }
|
|
|