tiny fix for loading localstorage values re + button config options
This commit is contained in:
parent
2f3c65e28f
commit
89997ac1e1
2 changed files with 6 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
<!doctype html>
|
<!DOCTYPE html>
|
||||||
<html lang="en-US">
|
<html lang="en-US">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
|
@ -334,7 +334,7 @@
|
||||||
<br />
|
<br />
|
||||||
<span id="version">
|
<span id="version">
|
||||||
<a href="https://github.com/zero01101/openOutpaint" target="_blank">
|
<a href="https://github.com/zero01101/openOutpaint" target="_blank">
|
||||||
v20230831.001
|
v20231209.001
|
||||||
</a>
|
</a>
|
||||||
<br />
|
<br />
|
||||||
<a
|
<a
|
||||||
|
@ -571,7 +571,7 @@
|
||||||
src="js/ui/tool/generic.js?v=3e678e0"
|
src="js/ui/tool/generic.js?v=3e678e0"
|
||||||
type="text/javascript"></script>
|
type="text/javascript"></script>
|
||||||
|
|
||||||
<script src="js/ui/tool/dream.js?v=aa8c906" type="text/javascript"></script>
|
<script src="js/ui/tool/dream.js?v=c279be2" type="text/javascript"></script>
|
||||||
<script
|
<script
|
||||||
src="js/ui/tool/maskbrush.js?v=e9bd0eb"
|
src="js/ui/tool/maskbrush.js?v=e9bd0eb"
|
||||||
type="text/javascript"></script>
|
type="text/javascript"></script>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!doctype html>
|
<!DOCTYPE html>
|
||||||
<html lang="en-US">
|
<html lang="en-US">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
|
@ -259,6 +259,7 @@
|
||||||
: localStorage.getItem(
|
: localStorage.getItem(
|
||||||
"openoutpaint/settings.update-prompt-on-more-button"
|
"openoutpaint/settings.update-prompt-on-more-button"
|
||||||
) === "true";
|
) === "true";
|
||||||
|
updatePromptOnMoreButton.checked = _enable_update_prompt_on_more_button;
|
||||||
|
|
||||||
let _enable_jump_to_1st_new_on_more_button =
|
let _enable_jump_to_1st_new_on_more_button =
|
||||||
localStorage.getItem(
|
localStorage.getItem(
|
||||||
|
@ -268,6 +269,7 @@
|
||||||
: localStorage.getItem(
|
: localStorage.getItem(
|
||||||
"openoutpaint/settings.jump-to-1st-new-on-more-button"
|
"openoutpaint/settings.jump-to-1st-new-on-more-button"
|
||||||
) === "true";
|
) === "true";
|
||||||
|
jumpTo1stNewOnMoreButton.checked = _enable_jump_to_1st_new_on_more_button;
|
||||||
|
|
||||||
writeToLocalStorage();
|
writeToLocalStorage();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue