set window height and width to be integers
This commit is contained in:
parent
78ae0d75b5
commit
44bca4adaa
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ 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});
|
||||
this.instance = new Window("/pages/popup.htm", {"width": 500, "height": 500, "type": "popup", "hidden": true});
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue