refresh auto file reading same file
This commit is contained in:
parent
1362d7c6e5
commit
a87a063e1b
4 changed files with 5 additions and 3 deletions
|
|
@ -246,6 +246,8 @@ If you like the tool and wish it developed further with more functions and easie
|
|||
|
||||
— Backwards Compatibility with Hollow Knight version 1.0.0.6 save files (February 2017 release version).
|
||||
|
||||
— File Reading now launches automatically when you choose the same file again. Useful for quick analyzing the same save file after modification without reloading the page.
|
||||
|
||||
— **Game Completion Essentials** additions:
|
||||
✅ Acid Drained Waterways
|
||||
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -177,7 +177,7 @@
|
|||
<div class="buttons centered">
|
||||
|
||||
<div class="input-buttons">
|
||||
<input id="save-area-file" class="" type="file" name="file" accept=".dat,.bak*" onchange="LoadSaveFile(this);">
|
||||
<input id="save-area-file" class="" type="file" name="file" accept=".dat,.bak*" onchange="LoadSaveFile(this);" onclick="this.value = '';">
|
||||
</div>
|
||||
|
||||
<div class="input-buttons">
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@
|
|||
<div class="buttons centered">
|
||||
|
||||
<div class="input-buttons">
|
||||
<input id="save-area-file" class="" type="file" name="file" accept=".dat,.bak*" onchange="LoadSaveFile(this);">
|
||||
<input id="save-area-file" class="" type="file" name="file" accept=".dat,.bak*" onchange="LoadSaveFile(this);" onclick="this.value = '';">
|
||||
</div>
|
||||
|
||||
<div class="input-buttons">
|
||||
|
|
|
|||
Loading…
Reference in a new issue