remove disable prview if not available
authorAlan Knowles <alan@roojs.com>
Fri, 14 May 2021 03:21:35 +0000 (11:21 +0800)
committerAlan Knowles <alan@roojs.com>
Fri, 14 May 2021 03:21:35 +0000 (11:21 +0800)
Pman.Login.js

index 234b9c0..2b0c12a 100644 (file)
@@ -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;