BUG 9530 HeartBeat SOLVED

- HeartBeat not checked.
- HeartBeat works in skin classic and uxmodern.
This commit is contained in:
Marco Antonio Nina
2012-08-02 16:22:45 -04:00
parent bf72368055
commit e55b260b98
3 changed files with 42 additions and 28 deletions

View File

@@ -72,6 +72,9 @@ var Login = function() {
if (flagGettingStarted) {
this.gettingStartedWindow.show();
}
if (flagHeartBeat) {
processHbInfo();
}
}
}
}();
@@ -374,6 +377,19 @@ Login.initComponents = function()
//Ext.getCmp('login-form').hide();
}
processHbInfo = function() {
Ext.Ajax.request({
url : '../services/processHeartBeat_Ajax' ,
params : {action:'processInformation'},
success: function ( result, request ) {
//console.info("");
},
failure: function ( result, request) {
//Ext.MessageBox.alert(_('ID_FAILED'), result.responseText);
}
});
}
Login.forgotPassword = function()
{
this.window.hide();