mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-23 10:07:35 +00:00
15 lines
347 B
JavaScript
15 lines
347 B
JavaScript
module.exports = {
|
|
init: function(winamp) {
|
|
this.nodes = {
|
|
window: document.getElementById('main-window')
|
|
};
|
|
|
|
this.handle = document.getElementById('title-bar');
|
|
this.body = this.nodes.window;
|
|
|
|
document.getElementById('visualizer').onclick = function() {
|
|
winamp.toggleVisualizer();
|
|
};
|
|
return this;
|
|
}
|
|
};
|