1
0
mirror of https://github.com/danbee/mpd-client synced 2025-03-04 08:39:09 +00:00
mpd-client/assets/js/application.js
2013-12-04 16:36:19 +00:00

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
});
});
});