diff --git a/app/www/index.html b/app/www/index.html index 704024f..5081de7 100644 --- a/app/www/index.html +++ b/app/www/index.html @@ -557,7 +557,8 @@ web.setCounter = function () { const counter = document.getElementById('counter').value; const change = prompt(`Change counter value?`, counter); - if (change === null || !isNumeric(change)) return false + if (change === null || !isNumeric(change)) return false; + console.log(change); const opts = { method : 'POST', headers : web._header,