remove getStarted from login

This commit is contained in:
Fernando Ontiveros
2025-04-14 17:32:23 +00:00
parent cfc74c33fd
commit a3b33a1b0f
13 changed files with 120 additions and 629 deletions

View File

@@ -5,7 +5,7 @@
* @author Erik Amaru Ortiz <erik@colosa.com>
*/
var loadMask = function(){
var lo adMask = function(){
return {
init: function() {
var loading = Ext.get('loading');
@@ -69,9 +69,6 @@ var Login = function() {
Ext.msgBoxSlider.msgTopCenter(flyNotify.type, flyNotify.title, flyNotify.text, flyNotify.time);
}
if (flagGettingStarted) {
this.gettingStartedWindow.show();
}
}
}
}();
@@ -349,29 +346,6 @@ Login.initComponents = function()
})
});
this.gettingStartedWindow = new Ext.Window({
id: 'gettingStartedWindow',
layout: 'fit',
title: '',
width: 640,
height: 500, //180,
//iconCls: 'ux-auth-header-icon',
closable: true,
resizable: false,
plain: true,
draggable: false,
modal:true,
//autoLoad: '../services/login_getStarted.php'
items: [
{
xtype: 'iframepanel',
defaultSrc : '../services/login_getStarted.php',
loadMask:{msg:_('ID_LOADING')},
bodyStyle:{height: (PMExt.getBrowser().screen.height-60) + 'px', overflow:'auto'},
width:588
}
]
});
//Ext.getCmp('login-form').hide();
}