X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=Pman.Login.js;h=2b0c12a30c2f06cc4d95ada5e9264e521a7137f7;hb=dff7116c31985c523f927df3e8e7cf50670ef428;hp=e79fc7177ddc88588d83b389f1f50923cdd29c06;hpb=944c6f48f5725e57bb6be59f30df7354f657f5e9;p=Pman.Core diff --git a/Pman.Login.js b/Pman.Login.js index e79fc717..2b0c12a3 100644 --- a/Pman.Login.js +++ b/Pman.Login.js @@ -132,7 +132,9 @@ Pman.Login = new Roo.util.Observable({ var res = Pman.processResponse(response); //console.log(res); if ( Pman.Login.checkFails > 2) { - Pman.Preview.disable(); + if (typeof(Pman.Preview) != 'undefined') { + Pman.Preview.disable(); // not sure why this was added - but MO chrome does not have it. + } Roo.MessageBox.alert("Error", res.errorMsg ? res.errorMsg : "Error getting authentication status. - try reloading"); return; @@ -259,15 +261,15 @@ Pman.Login = new Roo.util.Observable({ Roo.MessageBox.alert("Error", "Fill in your email address"); return; } - Roo.Ajax.request({ - url: baseURL + '/Login.js', + new Pman.Request({ + url: baseURL + '/Login.js', + mask : "Sending Password Reset email", params: { passwordRequest: n }, method: 'POST', - success: function(response, opts) { // check successfull... + success: function(res) { // check successfull... - var res = Pman.processResponse(response); if (!res.success) { // error! Roo.MessageBox.alert("Error" , res.errorMsg ? res.errorMsg : "Problem Requesting Password Reset"); return;