Pman.Login.js
[Pman.Core] / Pman.Login.js
index 3fd9e94..e79fc71 100644 (file)
@@ -36,6 +36,8 @@ Pman.Login =  new Roo.util.Observable({
     versionWarn: false,
     sending : false,
     
+    checkConnection : false, // the Roo.data.Connection for checking if still authenticated.
+    
     onLoad : function() // called on page load...
     {
         // load 
@@ -105,8 +107,10 @@ Pman.Login =  new Roo.util.Observable({
             return;
         }
         this.sending = true;
-        var c = new Roo.data.Connection();
-        c.request({
+        if (!this.checkConnection) {
+            this.checkConnection = new Roo.data.Connection();
+        }
+        this.checkConnection.request({
             url: baseURL + '/Login.js',  
             params: {
                 getAuthUser: true
@@ -403,18 +407,22 @@ Pman.Login =  new Roo.util.Observable({
         ef.dom.style.margin = 10;
           
         this.form.render(ef.dom);
-         // logoprefix comes from base config.
+         // logoprefix comes from base config - normally the owner company logo...
+         // ??? 
          
         var img = typeof(appLogo) != 'undefined'  && appLogo.length ? appLogo :
             rootURL + '/Pman/'+appNameShort + '/templates/images/logo.gif' ;
          
-        Pman.Login.form.el.createChild({
+         Pman.Login.form.el.createChild({
                 tag: 'img', 
                 src: img,
                 style: 'margin-bottom: 10px;'
             },
             Pman.Login.form.el.dom.firstChild 
-        );
+        ).on('error', function() {
+            this.dom.style.visibility = 'hidden';
+            this.dom.style.height = '10px';
+        });
        
         var vp = this.dialog.getLayout().add('center', new Roo.ContentPanel(ef, {
             autoCreate : true,