call history init after login to get bookmarkable pages for installations without public access

This commit is contained in:
Sebastian Sdorra
2011-11-19 18:02:22 +01:00
parent fa460a6549
commit d9422d2e50
3 changed files with 7 additions and 14 deletions

View File

@@ -528,6 +528,10 @@ Ext.onReady(function(){
main.addListeners('login', loginCallbacks);
main.addListeners('logout', logoutCallbacks);
main.addListeners('login', function(){
Ext.History.init();
});
main.init();
main.checkLogin();
});