mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2025-03-08 07:37:49 +01:00
Correct a typo in restorePrompt()
This commit is contained in:
parent
e20452ddd8
commit
2fc0bdfcba
@ -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;
|
||||
}
|
||||
|
@ -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">
|
||||
|
Loading…
x
Reference in New Issue
Block a user