POST not /POST and invert checkbox state before submitting.

This commit is contained in:
mmcwilliams 2017-11-21 16:38:11 -05:00
parent 42aa573698
commit 722d3701ac
1 changed files with 2 additions and 2 deletions

View File

@ -408,7 +408,7 @@
}
};
web.setDir = function () {
var dir = document.getElementById('dir').checked;
var dir = !document.getElementById('dir').checked;
/*$.ajax({
method : 'POST',
url : '/dir',
@ -418,7 +418,7 @@
success : web.setDirSuccess
});*/
var opts = {
method : '/POST',
method : 'POST',
body : { dir : dir}
};
fetch('/dir', opts).then(web.setDirSuccess);