implement music identification
This commit is contained in:
@@ -655,6 +655,10 @@ a.itemTag:hover {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.viewMenuRemoteControlButton {
|
||||
margin-left: .5em;
|
||||
}
|
||||
|
||||
@media all and (min-width: 600px) {
|
||||
.inlineDetailSection:not(.hide) {
|
||||
display: inline-block;
|
||||
@@ -686,6 +690,10 @@ a.itemTag:hover {
|
||||
.libraryViewNavInner {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.selectedViewIndicator {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media all and (max-width: 750px) {
|
||||
|
||||
@@ -928,7 +928,7 @@
|
||||
|
||||
$('.identifyProviderIds', page).html(html).trigger('create');
|
||||
|
||||
var friendlyName = item.Type == "BoxSet" ? "Collection" : item.Type;
|
||||
var friendlyName = item.Type == "BoxSet" ? "Collection" : item.Type == "MusicArtist" ? "Artist" : item.Type == "MusicAlbum" ? "Album" : item.Type;
|
||||
|
||||
$('.identificationHeader', page).html('Identify ' + friendlyName);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user