mirror of
https://github.com/Krafpy/KSP-MGA-Planner.git
synced 2026-01-18 23:56:15 -08:00
Modified the file structure to have the `index.html` at the root of the repository. Needed for Github Pages.
15 lines
354 B
JavaScript
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;
|
|
}
|
|
}
|