]> git.proxmox.com Git - pve-manager.git/blame - www/mobile/app.js
Makefile: fix distclean target
[pve-manager.git] / www / mobile / app.js
CommitLineData
48295db4
DM
1Ext.application({
2
3 launch: function() {
4 var me = this;
5
6 PVE.Workspace.setHistory(me.getHistory());
7
8 Ext.Ajax.on('requestexception', function(conn, response) {
9 if (response.status === 401) {
10 PVE.Workspace.showLogin();
11 }
12 });
13 }
14});