diff options
author | Daniel Smith <rdnlsmith@gmail.com> | 2019-05-23 20:15:06 -0400 |
---|---|---|
committer | Daniel Smith <rdnlsmith@gmail.com> | 2019-05-23 20:15:06 -0400 |
commit | f7fe2abd286fe105ffec7a21316b340c45bccabe (patch) | |
tree | 20ff403d217d319c4301dcaeabd8509bcb6ddc4b /app | |
parent | a76d2e038dc234c529787069562dff42c17e857a (diff) |
Diffstat (limited to 'app')
-rw-r--r-- | app/index.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/index.js b/app/index.js index 5f21478..cbde03f 100644 --- a/app/index.js +++ b/app/index.js @@ -109,9 +109,7 @@ function setHours(val) { drawNumeral(Math.floor(val / 10), hours1); } else { drawNumeral(0, hours1); - if (preferences.clockDisplay === "12h") { - hours1.style.opacity = 0.2; - } + hours1.style.opacity = 0.2; } drawNumeral(Math.floor(val % 10), hours2); } |