mirror of
https://github.com/danbee/mpd-client
synced 2025-03-04 08:39:09 +00:00
11 lines
203 B
JavaScript
11 lines
203 B
JavaScript
var Queue = can.Control.extend({
|
|
|
|
init: function(element, options) {
|
|
element.html(can.view('views/queue.ejs', {
|
|
queueSongs: options.queueSongs,
|
|
status: options.status
|
|
}));
|
|
}
|
|
|
|
});
|