This commit is contained in:
Ezra Fein 2019-06-22 18:51:21 -04:00
parent a7f7f43558
commit 6650f57295
2 changed files with 8 additions and 1 deletions

View File

@ -152,7 +152,7 @@
populated, the button to the right<br>
is for you.<br>
</div>
<div class="button_v">
<div class="buttons_v">
<button onclick="set_populate(true)">Start Full</button>
<button onclick="set_populate(true)">Start Empty</button>
</div>

View File

@ -28,3 +28,10 @@ function red(red) {
document.body.style.backgroundColor = ""
}
}
function set_populate(bap) {
if (bap == true) {
window.localStorage.show_all = true
} else {
delete window.localStorage.show_all
}
}