diff options
author | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2025-04-13 00:09:05 -0700 |
---|---|---|
committer | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2025-04-13 00:09:05 -0700 |
commit | 602e61bf7d569f9e089782680ab5d15c0e45560a (patch) | |
tree | 42419c6f5ff52810468fcff70816029e1699cf2f | |
parent | daa94f9a619716b4993eb7acab37c62feab91574 (diff) | |
download | tempo-602e61bf7d569f9e089782680ab5d15c0e45560a.tar.gz tempo-602e61bf7d569f9e089782680ab5d15c0e45560a.tar.xz |
fix date colour
-rw-r--r-- | tempo.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -35,7 +35,7 @@ function startTempo() { if ((val = localStorage['fg'])) document.body.style.color = val; if ((val = localStorage['fg_date'])) - document.getElementById('dateval').style.color = val; + document.getElementById('date').style.color = val; if ((val = localStorage['bg'])) document.body.style.backgroundColor = val; |