Files
KSP-MGA-Planner/dist/main/editor/error-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

15 lines
354 B
JavaScript

export class ErrorMessage {
constructor(id) {
this.paragraph = document.getElementById(id);
this.span = this.paragraph.getElementsByTagName("SPAN")[0];
this.hide();
}
hide() {
this.paragraph.hidden = true;
}
show(msg) {
this.span.innerHTML = msg;
this.paragraph.hidden = false;
}
}