From 96830c9614110ef295c9e2b619c5a59198ccc70d Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Mon, 30 Mar 2015 13:20:32 +0800 Subject: [PATCH] Pman.Login.js --- Pman.Login.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Pman.Login.js b/Pman.Login.js index 982f1577..4074d1bf 100644 --- a/Pman.Login.js +++ b/Pman.Login.js @@ -407,18 +407,21 @@ 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) { + this.dom.style.display = 'none'; + }); var vp = this.dialog.getLayout().add('center', new Roo.ContentPanel(ef, { autoCreate : true, -- 2.39.2