fix typos in JavaScript file

This commit is contained in:
Helmut Merz 2018-05-04 16:13:42 +02:00
parent a296370484
commit afd4416eaa

View file

@ -132,7 +132,7 @@ function submitReplacing(targetId, formId, url) {
mimetype: "text/html",
load: function(response, ioArgs) {
replaceNode(response, targetId);
return resonse;
return response;
}
})
}
@ -144,7 +144,7 @@ function xhrSubmitPopup(formId, url) {
mimetype: "text/html",
load: function(response, ioArgs) {
window.close();
return resonse;
return response;
}
});
}