summaryrefslogtreecommitdiff
path: root/options.js
diff options
context:
space:
mode:
authorDavid Vazgenovich Shakaryan <dvshakaryan@gmail.com>2022-04-15 03:07:28 -0700
committerDavid Vazgenovich Shakaryan <dvshakaryan@gmail.com>2022-04-15 03:10:38 -0700
commit566ea4b8b6a5c9f16cbeb280c73df836fee741fe (patch)
treefdee30370b87962c810db9ab6884e042c1b9eed0 /options.js
parenta82a5ed69075d1069d3bbe64db5a162906062611 (diff)
downloadtempo-566ea4b8b6a5c9f16cbeb280c73df836fee741fe.tar.gz
tempo-566ea4b8b6a5c9f16cbeb280c73df836fee741fe.tar.xz
appease the mozilla robot
Diffstat (limited to 'options.js')
-rw-r--r--options.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/options.js b/options.js
index c3f008b..8060e63 100644
--- a/options.js
+++ b/options.js
@@ -10,8 +10,8 @@ function saveOptions() {
localStorage['bg'] = document.getElementById('bg').value;
let status = document.getElementById('status');
- status.innerHTML = 'Options saved';
- setTimeout(function() { status.innerHTML = '' }, 2000);
+ status.textContent = 'Options saved';
+ setTimeout(function() { status.textContent = '' }, 2000);
}
function restoreOptions() {