'use strict'; oml.ui.appPanel = function() { var ui = oml.user.ui, that = Ox.SplitPanel({ elements: [ { element: oml.$ui.mainMenu = oml.ui.mainMenu(), size: 20 }, { element: oml.$ui.mainPanel = oml.ui.mainPanel() } ], orientation: 'vertical' }) .bindEvent({ oml_page: function(data) { setPage(data.value); } }); setPage(ui.page); function setPage(page) { // close dialogs $('.OxDialog:visible').each(function() { Ox.UI.elements[$(this).data('oxid')].close(); }); // open dialog if (Ox.contains([ 'welcome', 'app', 'preferences', 'users', 'notifications', 'transfers', 'help' ], page)) { oml.$ui[page + 'Dialog'] = oml.ui[page + 'Dialog']().open(); } } that.reload = function() { Ox.Request.cancel(); Ox.Request.clearCache(); oml.$ui.appPanel.remove(); oml.$ui.appPanel = oml.ui.appPanel().appendTo(Ox.$body); return that; }; return that; };