Push dev work to master #2

Merged
sixteenmillimeter merged 416 commits from dev into master 2018-07-19 15:29:02 +00:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit fdc0f41725 - Show all commits

View File

@ -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,