From 566ea4b8b6a5c9f16cbeb280c73df836fee741fe Mon Sep 17 00:00:00 2001 From: David Vazgenovich Shakaryan Date: Fri, 15 Apr 2022 03:07:28 -0700 Subject: appease the mozilla robot --- manifest.json | 2 +- options.js | 4 ++-- tempo.js | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/manifest.json b/manifest.json index 0d646e6..874b07a 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "Tempo", - "version": "0.7", + "version": "0.8", "description": "Replace new tab page with a clock.", "icons": { 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() { diff --git a/tempo.js b/tempo.js index ae3fa22..a18be78 100644 --- a/tempo.js +++ b/tempo.js @@ -20,12 +20,12 @@ function updateTime() { if (timefmt == 12) // default to 24 h = (h + 11) % 12 + 1; - let str_t = padTime(h) + '  ' + padTime(m) + - '  ' + padTime(s); + let str_t = padTime(h) + '\u00A0\u00A0' + padTime(m) + + '\u00A0\u00A0' + padTime(s); let str_d = dd + ' ' + months[dm] + ' ' + dy; - document.getElementById('timeval').innerHTML = str_t; - document.getElementById('dateval').innerHTML = str_d; + document.getElementById('timeval').textContent = str_t; + document.getElementById('dateval').textContent = str_d; } function startTempo() { -- cgit v1.2.3-70-g09d2