From 037190bb9df737dcb5ceb13fe7e9d81bdc29aec2 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Thu, 12 Jul 2018 21:06:40 -0400 Subject: [PATCH] Add TODO note --- client.js | 1 + 1 file changed, 1 insertion(+) diff --git a/client.js b/client.js index e0e6d46..87499d9 100644 --- a/client.js +++ b/client.js @@ -65,6 +65,7 @@ function redrawTable() { let nowDelta = new Date(new Date() - station.lastHeard); let tr = table.appendChild(document.createElement('tr')); + // TODO: should be set by same thing that sends alert if (nowDelta.getTime() > timeoutLength) { tr.classList.add('timedOut'); }