mirror of https://github.com/dirtbags/moth.git
19 lines
369 B
JavaScript
19 lines
369 B
JavaScript
|
var overview_proc;
|
||
|
|
||
|
function Overview(element) {
|
||
|
var term = new Terminal(element);
|
||
|
|
||
|
this.start = function() {
|
||
|
term.clear();
|
||
|
term.par("Overview terminal");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
function overview_start() {
|
||
|
overview_proc = new Overview(document.getElementById("overview"));
|
||
|
setTimeout(overview_proc.start, 4000);
|
||
|
}
|
||
|
|
||
|
window.addEventListener("load", overview_start);
|