mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
Completed installation procedure on wizard
This commit is contained in:
@@ -1,15 +1,24 @@
|
||||
class ManagerPage {
|
||||
element;
|
||||
options;
|
||||
|
||||
constructor(options) {
|
||||
this.options = options ?? {};
|
||||
this.element = document.createElement('div');
|
||||
this.element.classList.add("manager-page");
|
||||
this.element.classList.add("manager-page", "hide");
|
||||
}
|
||||
|
||||
getElement() {
|
||||
return this.element;
|
||||
}
|
||||
|
||||
show() {
|
||||
this.element.classList.remove("hide");
|
||||
}
|
||||
|
||||
hide() {
|
||||
this.element.classList.add("hide");
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = ManagerPage;
|
||||
Reference in New Issue
Block a user