feat(1.89.19): google translate support

This commit is contained in:
Azgaar 2023-05-14 17:47:30 +04:00
parent c5a4014feb
commit 9bdf8629fb
3 changed files with 3 additions and 3 deletions

View file

@ -7863,7 +7863,7 @@
<script src="modules/ui/general.js?v=1.87.03"></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/ui/style.js"></script>

View file

@ -29,7 +29,7 @@ if (PRODUCTION && "serviceWorker" in navigator) {
"beforeinstallprompt",
async event => {
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);
},
{once: true}

View file

@ -28,7 +28,7 @@ function createButton() {
button.innerHTML = "Install";
button.onclick = openDialog;
button.onmouseenter = () => tip("Install the Application");
document.querySelector("body").appendChild(button);
document.getElementById("optionsContainer").appendChild(button);
return button;
}