added option to disable plaintext blocks

This commit is contained in:
Kevin Froman 2019-09-27 20:38:47 -05:00
parent 71c9337ab7
commit 60f0ef0fef
7 changed files with 43 additions and 25 deletions

View file

@ -44,7 +44,7 @@ fetch('/flow/version', {
headers: {
"token": webpass
}})
.then((resp) => resp.text()) // Transform the data into json
.then((resp) => resp.text())
.then(function(data) {
document.getElementById('circlesVersion').innerText = data
})
@ -218,4 +218,4 @@ newPostForm.onsubmit = function(){
setTimeout(function(){getBlocks()}, 500)
})
return false
}
}