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 4 deletions
Showing only changes of commit 5ea31a7050 - Show all commits

View File

@ -410,13 +410,11 @@
} }
}; };
web.setDir = function () { web.setDir = function () {
const dir = document.getElementById('dir').checked; const dir = !document.getElementById('dir').checked;
const formData = new FormData()
console.log('set to => ' + dir) console.log('set to => ' + dir)
formData.append('json', JSON.stringify({ dir : dir }))
const opts = { const opts = {
method : 'POST', method : 'POST',
body : formData body : JSON.stringify({ dir : dir })
}; };
console.dir(opts) console.dir(opts)
fetch('/dir', opts) fetch('/dir', opts)