fix betterMenuScreens
This commit is contained in:
parent
da870972ab
commit
7b4724a6db
|
|
@ -23,7 +23,7 @@ var menuScreens = {
|
||||||
infoSearch.value = "";
|
infoSearch.value = "";
|
||||||
infoHistory = [];
|
infoHistory = [];
|
||||||
},
|
},
|
||||||
open: showInfo
|
open: () => {showInfo();}
|
||||||
},
|
},
|
||||||
mods: {
|
mods: {
|
||||||
name: "Mods",
|
name: "Mods",
|
||||||
|
|
@ -36,14 +36,14 @@ var menuScreens = {
|
||||||
modParent.style.display = "none";
|
modParent.style.display = "none";
|
||||||
modManagerUrl.value = "";
|
modManagerUrl.value = "";
|
||||||
},
|
},
|
||||||
open: showModManager
|
open: () => {showModManager();}
|
||||||
},
|
},
|
||||||
settings: {
|
settings: {
|
||||||
name: "Settings",
|
name: "Settings",
|
||||||
parentDiv: "settingsParent",
|
parentDiv: "settingsParent",
|
||||||
buttonDescription: "Brings up the settings screen",
|
buttonDescription: "Brings up the settings screen",
|
||||||
show: true,
|
show: true,
|
||||||
open: showSettings
|
open: () => {showSettings();}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue