summaryrefslogtreecommitdiff
path: root/js/tool.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/tool.js')
-rw-r--r--js/tool.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/js/tool.js b/js/tool.js
index 9404b1c..360e79f 100644
--- a/js/tool.js
+++ b/js/tool.js
@@ -33,6 +33,7 @@ var Checkbox = Tool.extend({
update: function(state){
if (state) this.el.innerHTML = "x " + this.name
else this.el.innerHTML = "_ " + this.name
+ if (this.memorable) { localStorage.setItem("ascii.tools." + this.name, !! state) }
}
})