Files
KSP-MGA-Planner/dist/main/editor/progress-msg.js
Krafpy 824af087c1 Modified file structure.
Modified the file structure to have the `index.html` at the root
of the repository. Needed for Github Pages.
2021-08-15 21:31:25 +02:00

18 lines
487 B
JavaScript

export class ProgressMessage {
constructor(id) {
this._paragraph = document.getElementById(id);
}
enable(timeout) {
if (this._displayTimeout)
clearTimeout(this._displayTimeout);
this._displayTimeout = setTimeout(() => this._paragraph.hidden = false, timeout);
}
hide() {
clearTimeout(this._displayTimeout);
this._paragraph.hidden = true;
}
setMessage(msg) {
this._paragraph.innerHTML = msg;
}
}