Get cover art
This commit is contained in:
parent
c55389a3ff
commit
271c4fb9b5
1 changed files with 7 additions and 6 deletions
13
js/app.js
13
js/app.js
|
@ -329,6 +329,7 @@ function playSong(el, songid, albumid) {
|
||||||
title = child.title;
|
title = child.title;
|
||||||
artist = child.artist;
|
artist = child.artist;
|
||||||
album = child.album;
|
album = child.album;
|
||||||
|
coverart = child.coverArt;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -337,8 +338,8 @@ function playSong(el, songid, albumid) {
|
||||||
$('#songdetails_song').attr('parentid', albumid);
|
$('#songdetails_song').attr('parentid', albumid);
|
||||||
$('#songdetails_song').attr('childid', songid);
|
$('#songdetails_song').attr('childid', songid);
|
||||||
$('#songdetails_artist').html(artist + ' - ' + album);
|
$('#songdetails_artist').html(artist + ' - ' + album);
|
||||||
$('#coverartimage').attr('href', baseURL + '/getCoverArt.view?v=1.6.0&c=' + applicationName + '&f=json&id=' + songid);
|
$('#coverartimage').attr('href', baseURL + '/getCoverArt.view?v=1.6.0&c=' + applicationName + '&f=json&id=' + coverart);
|
||||||
$('#coverartimage img').attr('src', baseURL + '/getCoverArt.view?v=1.6.0&c=' + applicationName + '&f=json&size=56&id=' + songid);
|
$('#coverartimage img').attr('src', baseURL + '/getCoverArt.view?v=1.6.0&c=' + applicationName + '&f=json&size=56&id=' + coverart);
|
||||||
audio.load(baseURL + '/stream.view?v=1.6.0&c=' + applicationName + '&f=json&id=' + songid);
|
audio.load(baseURL + '/stream.view?v=1.6.0&c=' + applicationName + '&f=json&id=' + songid);
|
||||||
audio.play();
|
audio.play();
|
||||||
$('table.songlist tr.song').removeClass('playing');
|
$('table.songlist tr.song').removeClass('playing');
|
||||||
|
@ -375,7 +376,7 @@ function rateSong(songid, rating) {
|
||||||
req.setRequestHeader('Authorization', auth);
|
req.setRequestHeader('Authorization', auth);
|
||||||
},
|
},
|
||||||
success: function () {
|
success: function () {
|
||||||
updateMessage('Rating Updated!');
|
updateMessage('Rating Updated!');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -544,7 +545,7 @@ function addChatMessage(msg) {
|
||||||
},
|
},
|
||||||
success: function () {
|
success: function () {
|
||||||
updater.reset();
|
updater.reset();
|
||||||
//loadChatMessages();
|
//loadChatMessages();
|
||||||
},
|
},
|
||||||
traditional: true // Fixes POST with an array in JQuery 1.4
|
traditional: true // Fixes POST with an array in JQuery 1.4
|
||||||
});
|
});
|
||||||
|
@ -894,7 +895,7 @@ function findKeyForCode(code) {
|
||||||
});
|
});
|
||||||
return keyFound;
|
return keyFound;
|
||||||
}
|
}
|
||||||
function popOut()
|
function popOut()
|
||||||
{
|
{
|
||||||
window.open(hostURL, "External Player", "status = 1, height = 735, width = 840, resizable = 0")
|
window.open(hostURL, "External Player", "status = 1, height = 735, width = 840, resizable = 0")
|
||||||
}
|
}
|
||||||
|
@ -921,4 +922,4 @@ function updateMessage(msg) {
|
||||||
$('#messages').text(msg);
|
$('#messages').text(msg);
|
||||||
$('#messages').fadeIn()
|
$('#messages').fadeIn()
|
||||||
setTimeout(function () { $('#messages').fadeOut(); }, 5000);
|
setTimeout(function () { $('#messages').fadeOut(); }, 5000);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue