forked from platypush/platypush
Fixed music.js widget as well for the new mopidy backend
This commit is contained in:
parent
3190d3c6c8
commit
0697598a86
1 changed files with 12 additions and 2 deletions
|
@ -105,14 +105,24 @@ $(document).ready(function() {
|
|||
};
|
||||
|
||||
var refreshStatus = function(status) {
|
||||
if ('state' in status) {
|
||||
setState(state=status.state);
|
||||
}
|
||||
|
||||
if ('elapsed' in status) {
|
||||
setTrackElapsed(status.elapsed);
|
||||
}
|
||||
|
||||
if ('position' in status) {
|
||||
setTrackElapsed(status.position);
|
||||
}
|
||||
};
|
||||
|
||||
var refreshTrack = function(track) {
|
||||
if ('time' in track) {
|
||||
setTrackTime(track.time);
|
||||
}
|
||||
|
||||
$artistElement.text(track.artist);
|
||||
$titleElement.text(track.title);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue