mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2025-01-22 08:41:14 +00:00
Don't hardcode webpage title
This commit is contained in:
parent
e8398a36ea
commit
25bd35fa8d
|
@ -5,7 +5,7 @@
|
||||||
<meta name="viewport"
|
<meta name="viewport"
|
||||||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||||
<title>yuzu Installer</title>
|
<title id="window-title">... Installer</title>
|
||||||
|
|
||||||
<link rel="icon" href="/favicon.ico" />
|
<link rel="icon" href="/favicon.ico" />
|
||||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
|
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
|
||||||
|
@ -140,6 +140,8 @@
|
||||||
<script src="/js/helpers.js"></script>
|
<script src="/js/helpers.js"></script>
|
||||||
<script src="/js/vue.min.js"></script>
|
<script src="/js/vue.min.js"></script>
|
||||||
<script>
|
<script>
|
||||||
|
document.getElementById("window-title").innerText = config.name + " Installer";
|
||||||
|
|
||||||
function selectFileCallback(name) {
|
function selectFileCallback(name) {
|
||||||
app.install_location = name;
|
app.install_location = name;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue