summaryrefslogtreecommitdiff
path: root/web/static/js
diff options
context:
space:
mode:
Diffstat (limited to 'web/static/js')
-rw-r--r--web/static/js/app.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/web/static/js/app.js b/web/static/js/app.js
index 954dc8c..37d2a30 100644
--- a/web/static/js/app.js
+++ b/web/static/js/app.js
@@ -3,6 +3,16 @@
// Constants
const AUTO_REFRESH_INTERVAL = 5 * 60 * 1000; // 5 minutes in milliseconds
+// Color the clock based on the build version hash
+(function applyVersionColor() {
+ const el = document.getElementById('last-updated');
+ if (!el) return;
+ const ver = el.dataset.buildVersion || '';
+ const hex = ver.replace(/[^0-9a-f]/gi, '').slice(0, 6).padEnd(6, '0');
+ const hue = Math.round((parseInt(hex, 16) / 0xffffff) * 360);
+ el.style.color = `hsl(${hue}, 70%, 65%)`;
+})();
+
// Timeline Calendar Initialization
function initTimelineCalendar(calendarId, nowLineId, untimedSectionId) {
const calendar = document.getElementById(calendarId);