Correct a typo in `restorePrompt()`

This commit is contained in:
Gnome Ann 2022-01-04 14:41:31 -05:00
parent e20452ddd8
commit 2fc0bdfcba
2 changed files with 2 additions and 2 deletions

View File

@ -1511,7 +1511,7 @@ function restorePrompt() {
if(shadow_text.length && shadow_text[0].firstChild && (shadow_text[0].firstChild.nodeType === 3 || shadow_text[0].firstChild.tagName === "BR")) {
detected = true;
ref = shadow_text;
} else if(game_text.length && game_text[0].firstChild && game_text[0].firstChild.nodeType === 3 || game_text[0].firstChild.tagName === "BR") {
} else if(game_text.length && game_text[0].firstChild && (game_text[0].firstChild.nodeType === 3 || game_text[0].firstChild.tagName === "BR")) {
detected = true;
ref = game_text;
}

View File

@ -17,7 +17,7 @@
<script src="static/bootstrap.min.js"></script>
<script src="static/bootstrap-toggle.min.js"></script>
<script src="static/rangy-core.min.js"></script>
<script src="static/application.js?ver=1.16.4u"></script>
<script src="static/application.js?ver=1.16.4v"></script>
</head>
<body>
<input type="file" id="remote-save-select" accept="application/json" style="display:none">