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
Dan Barber cc3a6217da Partway through component refactor.
* Queue now displays.
* Does not yet update.
2013-12-20 15:29:39 +00:00

31 lines
741 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
//}),
//library: new Library('#library'),
//events: new Events(queueSongs, status),
//queue: new Queue('#queue', {
//queueSongs: queueSongs,
//status: status
//})
//};
//});
// Render the application template. Components should take care of the rest.
var template = can.view.mustache("<mpd-client></mpd-client>");
$(document.body).append(template());
});