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 3 additions and 1 deletions
Showing only changes of commit 134afb8e05 - Show all commits

View File

@ -443,7 +443,9 @@
web.getState = function () { web.getState = function () {
fetch('/status') fetch('/status')
.then(res => { .then(res => {
return res.json() let r = res.json();
console.dir(r);
return r;
}) })
.then(web.getStateSuccess) .then(web.getStateSuccess)
.catch(err => { .catch(err => {