diff options
Diffstat (limited to 'tempo.js')
-rw-r--r-- | tempo.js | 18 |
1 files changed, 7 insertions, 11 deletions
@@ -31,17 +31,13 @@ function updateTime() { function startTempo() { timefmt = localStorage['timefmt']; - let fg = localStorage['fg']; - if (fg) - document.body.style.color = fg; - - let fg_date = localStorage['fg_date']; - if (fg_date) - document.getElementById('dateval').style.color = fg_date; - - let bg = localStorage['bg']; - if (bg) - document.body.style.backgroundColor = bg; + let val; + if ((val = localStorage['fg'])) + document.body.style.color = val; + if ((val = localStorage['fg_date'])) + document.getElementById('dateval').style.color = val; + if ((val = localStorage['bg'])) + document.body.style.backgroundColor = val; updateTime(); setTimeout(function() { updateTime(); setInterval(updateTime, 1000) }, |