mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-05 04:40:29 +00:00
15 lines
254 B
JavaScript
15 lines
254 B
JavaScript
Ext.application({
|
|
|
|
launch: function() {
|
|
var me = this;
|
|
|
|
PVE.Workspace.setHistory(me.getHistory());
|
|
|
|
Ext.Ajax.on('requestexception', function(conn, response) {
|
|
if (response.status === 401) {
|
|
PVE.Workspace.showLogin();
|
|
}
|
|
});
|
|
}
|
|
});
|