diff --git a/sd-card/html/overview.html b/sd-card/html/overview.html index 1ad4eb44..fddab6c3 100644 --- a/sd-card/html/overview.html +++ b/sd-card/html/overview.html @@ -106,8 +106,8 @@ var h = addZero(d.getHours()); var m = addZero(d.getMinutes()); var s = addZero(d.getSeconds()); - $('#img').html?v=$COMMIT_HASH(''); - $('#timestamp').html?v=$COMMIT_HASH("Last Page Refresh:" + (h + ":" + m + ":" + s)); + $('#img').html(''); + $('#timestamp').html("Last Page Refresh:" + (h + ":" + m + ":" + s)); } @@ -126,7 +126,7 @@ xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { var _rsp = xhttp.responseText; - $('#statusflow').html?v=$COMMIT_HASH("Status: " + _rsp); + $('#statusflow').html("Status: " + _rsp); } } xhttp.open("GET", url, true); @@ -140,7 +140,7 @@ xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { var _rsp = xhttp.responseText; - $('#cputemp').html?v=$COMMIT_HASH("CPU Temperature: " +_rsp); + $('#cputemp').html("CPU Temperature: " +_rsp); } } xhttp.open("GET", url, true); @@ -154,7 +154,7 @@ xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { var _rsp = xhttp.responseText; - $('#rssi').html?v=$COMMIT_HASH("RSSI: " + _rsp); + $('#rssi').html("RSSI: " + _rsp); } } xhttp.open("GET", url, true); @@ -168,7 +168,7 @@ xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { var _rsp = xhttp.responseText; - $('#uptime').html?v=$COMMIT_HASH("Uptime: " + _rsp); + $('#uptime').html("Uptime: " + _rsp); } } xhttp.open("GET", url, true); @@ -182,7 +182,7 @@ xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { var _rsp = xhttp.responseText; - $('#round').html?v=$COMMIT_HASH("(Round: " + _rsp + ")"); + $('#round').html("(Round: " + _rsp + ")"); } } xhttp.open("GET", url, true);