diff --git a/browser/loops.js b/browser/loops.js index fbf8ad8..56a3813 100755 --- a/browser/loops.js +++ b/browser/loops.js @@ -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; } }); }