mirror of
https://github.com/danbee/mpd-client
synced 2025-03-04 08:39:09 +00:00
29 lines
617 B
JavaScript
29 lines
617 B
JavaScript
// Set up necessary events and startup stuff
|
|
$(document).ready(function() {
|
|
|
|
$.when(QueueSong.findAll(), Status.findOne()).then(function(queueSongs, status) {
|
|
|
|
window.mpdClient = {
|
|
status: status,
|
|
queueSongs: queueSongs,
|
|
|
|
transport: new Transport('#transport', {
|
|
status: status
|
|
}),
|
|
|
|
queue: new Queue('#queue', {
|
|
queueSongs: queueSongs,
|
|
status: status
|
|
})
|
|
};
|
|
|
|
status.bind('change', function(event, attr, how, newVal, oldVal) {
|
|
if (attr == 'songid') {
|
|
mpdClient.queueSongs.updatePlaying(oldVal, newVal);
|
|
}
|
|
});
|
|
|
|
});
|
|
|
|
});
|