mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-17 09:41:24 +01:00
feat(1.89.19): google translate support
This commit is contained in:
parent
c5a4014feb
commit
9bdf8629fb
3 changed files with 3 additions and 3 deletions
|
|
@ -7863,7 +7863,7 @@
|
||||||
|
|
||||||
<script src="modules/ui/general.js?v=1.87.03"></script>
|
<script src="modules/ui/general.js?v=1.87.03"></script>
|
||||||
<script src="modules/ui/options.js?v=1.89.19"></script>
|
<script src="modules/ui/options.js?v=1.89.19"></script>
|
||||||
<script src="main.js?v=1.89.15"></script>
|
<script src="main.js?v=1.89.19"></script>
|
||||||
|
|
||||||
<script defer src="modules/relief-icons.js"></script>
|
<script defer src="modules/relief-icons.js"></script>
|
||||||
<script defer src="modules/ui/style.js"></script>
|
<script defer src="modules/ui/style.js"></script>
|
||||||
|
|
|
||||||
2
main.js
2
main.js
|
|
@ -29,7 +29,7 @@ if (PRODUCTION && "serviceWorker" in navigator) {
|
||||||
"beforeinstallprompt",
|
"beforeinstallprompt",
|
||||||
async event => {
|
async event => {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
const Installation = await import("./modules/dynamic/installation.js");
|
const Installation = await import("./modules/dynamic/installation.js?v=1.89.19");
|
||||||
Installation.init(event);
|
Installation.init(event);
|
||||||
},
|
},
|
||||||
{once: true}
|
{once: true}
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ function createButton() {
|
||||||
button.innerHTML = "Install";
|
button.innerHTML = "Install";
|
||||||
button.onclick = openDialog;
|
button.onclick = openDialog;
|
||||||
button.onmouseenter = () => tip("Install the Application");
|
button.onmouseenter = () => tip("Install the Application");
|
||||||
document.querySelector("body").appendChild(button);
|
document.getElementById("optionsContainer").appendChild(button);
|
||||||
return button;
|
return button;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue