mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-24 02:36:00 +00:00
7 lines
176 B
JavaScript
7 lines
176 B
JavaScript
module.exports = {
|
|
init: function() {
|
|
this.handle = document.getElementById('title-bar');
|
|
this.body = document.getElementById('main-window');
|
|
return this;
|
|
}
|
|
};
|