webamp/js/main-window.js
2016-07-28 09:20:54 -07:00

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