Merge pull request #253 from pR0Ps/bugfix/fullsize-thumbnails

Use small album images when viewing tracks
This commit is contained in:
Carey Metcalfe 2019-05-13 19:13:49 -04:00 committed by GitHub
commit 051a6b63c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,7 @@
<div class="title floatleft" title="{{o.description}}" ng-bind-html="o.name"></div> <div class="title floatleft" title="{{o.description}}" ng-bind-html="o.name"></div>
<span class="artist floatleft" ng-bind-html="o.artist"></span> <span class="artist floatleft" ng-bind-html="o.artist"></span>
<div ng-show="o.album && itemType !== 'archive'"> <div ng-show="o.album && itemType !== 'archive'">
<img ng-src="{{o.coverartfull}}"> <img ng-src="{{o.coverartthumb}}">
<a ng-href="#/library/0/{{o.albumId}}" class="albumblock floatleft" stop-event="click" ng-bind-html="o.album" title="{{o.album}}"></a> <a ng-href="#/library/0/{{o.albumId}}" class="albumblock floatleft" stop-event="click" ng-bind-html="o.album" title="{{o.album}}"></a>
</div> </div>
<a ng-show="o.album && itemType === 'archive'" ng-href="#/archive/{{o.artist}}/{{o.parentid}}" class="albumblock floatleft" stop-event="click" ng-bind-html="o.album" title="{{o.album}}"></a> <a ng-show="o.album && itemType === 'archive'" ng-href="#/archive/{{o.artist}}/{{o.parentid}}" class="albumblock floatleft" stop-event="click" ng-bind-html="o.album" title="{{o.album}}"></a>