thrimbletrimmer: undo bad refactor

pull/230/head
Mike Lang 3 years ago
parent 2865088692
commit 4db8c8f61c

@ -342,9 +342,8 @@ function thrimbletrimmerSubmit(state, override_changes = false) {
"Content-Type": "application/json", "Content-Type": "application/json",
}, },
body: JSON.stringify(wubData), body: JSON.stringify(wubData),
}) }).then(response =>
.then(response => response.text()) response.text().then(text => {
.then(text => {
if (!response.ok) { if (!response.ok) {
if (response.status == 409) { if (response.status == 409) {
dialogue = text + "\nClick Ok to submit anyway; Click Cancel to return to editing"; dialogue = text + "\nClick Ok to submit anyway; Click Cancel to return to editing";
@ -362,7 +361,8 @@ function thrimbletrimmerSubmit(state, override_changes = false) {
alert("Draft saved"); alert("Draft saved");
} }
document.getElementById("SubmitButton").disabled = false; document.getElementById("SubmitButton").disabled = false;
}); })
);
} }
function thrimbletrimmerDownload(isEditor) { function thrimbletrimmerDownload(isEditor) {

Loading…
Cancel
Save