mirror of
https://github.com/danbee/mpd-client
synced 2025-03-04 08:39:09 +00:00
13 lines
290 B
JavaScript
13 lines
290 B
JavaScript
// Set up necessary events and startup stuff
|
|
$(document).ready(function() {
|
|
|
|
$.when(QueueSong.findAll(), Status.findOne()).then(function(queueSongs, status) {
|
|
new Transport('#transport');
|
|
new Queue('#queue', {
|
|
queueSongs: queueSongs,
|
|
status: status
|
|
});
|
|
});
|
|
|
|
});
|