14 lines
No EOL
297 B
JavaScript
14 lines
No EOL
297 B
JavaScript
import Window from "/scripts/GUI/window.js";
|
|
|
|
export default class ManagedWindow {
|
|
constructor () {
|
|
this.instance = new Window("/pages/popup.htm", {"width": 500, "height": 500, "type": "popup", "hidden": true});
|
|
}
|
|
|
|
/*
|
|
Show the popup.
|
|
*/
|
|
show() {
|
|
this.instance.show();
|
|
}
|
|
} |