pandora/static/js/pandora/appPanel.js

33 lines
1,015 B
JavaScript
Raw Normal View History

2011-07-29 18:37:11 +00:00
// vim: et:ts=4:sw=4:sts=4:ft=javascript
2011-11-05 17:04:10 +00:00
'use strict';
2011-05-25 19:42:45 +00:00
pandora.ui.appPanel = function() {
2011-06-19 17:49:25 +00:00
var that = Ox.SplitPanel({
2011-05-25 19:42:45 +00:00
elements: [
{
2011-06-06 15:48:11 +00:00
element: pandora.$ui.mainMenu = pandora.ui.mainMenu(),
2011-05-25 19:42:45 +00:00
size: 20
},
{
2011-06-06 15:48:11 +00:00
element: pandora.$ui.mainPanel = pandora.ui.mainPanel()
2011-05-25 19:42:45 +00:00
}
],
orientation: 'vertical'
});
that.display = function() {
// fixme: move animation into Ox.App
2011-10-23 14:25:23 +00:00
var animate = $('.OxScreen').length == 0;
2011-11-04 15:54:42 +00:00
Ox.Log('', 'ANIMATE?', animate)
animate && pandora.$ui.body.css({opacity: 0});
2011-06-06 15:48:11 +00:00
that.appendTo(pandora.$ui.body);
animate && pandora.$ui.body.animate({opacity: 1}, 1000);
2011-05-25 19:42:45 +00:00
return that;
}
that.reload = function() {
pandora.$ui.appPanel.remove();
2011-06-06 15:48:11 +00:00
pandora.$ui.appPanel = pandora.ui.appPanel().appendTo(pandora.$ui.body);
2011-05-25 19:42:45 +00:00
return that;
}
return that;
};