summaryrefslogtreecommitdiff
path: root/options.js
diff options
context:
space:
mode:
authorDavid Vazgenovich Shakaryan <dvshakaryan@gmail.com>2022-04-15 18:02:48 -0700
committerDavid Vazgenovich Shakaryan <dvshakaryan@gmail.com>2022-04-15 18:22:02 -0700
commit1546d1ad242f65fcb9ad0ec3c2fcc4b237dc7ff0 (patch)
tree102a86c70f841c3871b67be6c43ff041baa4594b /options.js
parentcb2b45a5d6b1972b20dc715dfdf16320435167e4 (diff)
downloadtempo-1546d1ad242f65fcb9ad0ec3c2fcc4b237dc7ff0.tar.gz
tempo-1546d1ad242f65fcb9ad0ec3c2fcc4b237dc7ff0.tar.xz
reuse variables for conciseness
Diffstat (limited to 'options.js')
-rw-r--r--options.js25
1 files changed, 10 insertions, 15 deletions
diff --git a/options.js b/options.js
index a0b6b71..a218528 100644
--- a/options.js
+++ b/options.js
@@ -17,22 +17,17 @@ function saveOptions() {
function restoreOptions() {
// default to 24 for both unset and invalid
- let timefmt = localStorage['timefmt'] || 24;
- let timefmt_btn = document.getElementById('t' + timefmt) ||
+ let val = localStorage['timefmt'] || 24;
+ let btn = document.getElementById('t' + val) ||
document.getElementById('t24');
- timefmt_btn.checked = true;
-
- let fg = localStorage['fg'];
- if (fg)
- document.getElementById('fg').value = fg;
-
- let fg_date = localStorage['fg_date'];
- if (fg_date)
- document.getElementById('fg_date').value = fg_date;
-
- let bg = localStorage['bg'];
- if (bg)
- document.getElementById('bg').value = bg;
+ btn.checked = true;
+
+ if ((val = localStorage['fg']))
+ document.getElementById('fg').value = val;
+ if ((val = localStorage['fg_date']))
+ document.getElementById('fg_date').value = val;
+ if ((val = localStorage['bg']))
+ document.getElementById('bg').value = val;
}
function startOptions() {