From 9360e0011c9a5eaf74ab72fd97088b4a1472cb29 Mon Sep 17 00:00:00 2001 From: Chris Frankland-Wright Date: Fri, 8 Aug 2025 00:39:53 +0100 Subject: [PATCH] chore: Enable mock data and simplify clock info display --- static/index.html | 8 ++++---- static/script.js | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/static/index.html b/static/index.html index 7192e18..ec358d2 100644 --- a/static/index.html +++ b/static/index.html @@ -34,15 +34,15 @@

System Clock

--:--:--.---

Date: ---- -- --

-

NTP Service: --

-

Sync Status: --

+

--

+

--

Clock Offset

-

Delta: -- ms (-- frames)

-

Jitter: --

+

-- ms (-- frames)

+

diff --git a/static/script.js b/static/script.js index 4b37c63..3d01ea6 100644 --- a/static/script.js +++ b/static/script.js @@ -1,7 +1,7 @@ document.addEventListener('DOMContentLoaded', () => { // --- Mock Data Configuration --- // Set to true to use mock data, false for live API. - const useMockData = false; + const useMockData = true; let currentMockSetKey = 'allGood'; // Default mock data set let lastApiData = null;