2013-11-18 21:48:59 +01:00
|
|
|
/**
|
|
|
|
* EGroupware: Stylite Pixelegg template: hiding/showing header
|
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
2013-11-20 09:41:08 +01:00
|
|
|
* @author Wolfgang Ott <wolfgang.ott@pixelegg.de>
|
2013-11-18 21:48:59 +01:00
|
|
|
* @package pixelegg
|
|
|
|
* @version $Id: class.pixelegg_framework.inc.php 2741 2013-11-14 13:53:24Z ralfbecker $
|
|
|
|
*/
|
|
|
|
|
|
|
|
function show_pixelegg_header(_toggle, _delay)
|
|
|
|
{
|
|
|
|
$j("#egw_fw_header").slideToggle();
|
2013-11-25 04:16:41 +01:00
|
|
|
|
|
|
|
$j("#egw_fw_topmenu_info_items").animate({"margin-right": "20px","bottom": "","padding-right" : "0"},_delay);
|
|
|
|
$j("#egw_fw_topmenu_info_items").css("position", "relative");
|
|
|
|
|
|
|
|
$j("#egw_fw_sidebar").animate({'top':'57px'},_delay);
|
2013-11-20 09:41:08 +01:00
|
|
|
$j("#egw_fw_tabs").animate({'margin-top':'0px'},_delay);
|
2013-11-25 04:16:41 +01:00
|
|
|
$j(".egw_fw_ui_sidemenu_entry_header_active").css("background-position","95% -3000px");
|
2013-11-20 09:41:08 +01:00
|
|
|
$j(_toggle).parent().removeClass("slidedown");
|
|
|
|
$j(_toggle).parent().addClass("slideup");
|
2013-11-18 21:48:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function hide_pixelegg_header(_toggle, _delay)
|
|
|
|
{
|
|
|
|
$j("#egw_fw_header").slideToggle();
|
2013-11-20 09:41:08 +01:00
|
|
|
$j("#egw_fw_sidebar").animate({'top':'0px'},_delay);
|
2013-11-18 21:48:59 +01:00
|
|
|
$j("#egw_fw_topmenu_info_items").show();
|
|
|
|
$j("#egw_fw_logout").show();
|
|
|
|
$j("#egw_fw_print").show();
|
2013-11-25 04:16:41 +01:00
|
|
|
// $j("#egw_fw_tabs").animate({'margin-top':'-13px'},_delay);
|
|
|
|
$j("#egw_fw_topmenu_info_items").animate({
|
|
|
|
"bottom": "3px",
|
|
|
|
"right": "5px",
|
|
|
|
"display": "flex",
|
|
|
|
"padding-right" : "20px",
|
|
|
|
"text-align": "right",
|
|
|
|
"white-space": "nowrap",
|
|
|
|
},_delay);
|
|
|
|
$j(".egw_fw_ui_sidemenu_entry_header_active").css("background-position","95% 50%");
|
|
|
|
|
|
|
|
$j("#egw_fw_topmenu_info_items").css("position", "fixed");
|
|
|
|
$j("#egw_fw_topmenu_info_items").css("z-index", "1000");
|
2013-11-20 09:41:08 +01:00
|
|
|
$j(_toggle).parent().removeClass("slideup");
|
|
|
|
$j(_toggle).parent().addClass("slidedown");
|
2013-11-18 21:48:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
egw_LAB.wait(function() {
|
2013-11-12 18:23:52 +01:00
|
|
|
$j(document).ready(function() {
|
2013-11-18 21:48:59 +01:00
|
|
|
|
2013-11-12 18:23:52 +01:00
|
|
|
$j('#slidetoggle').click(function(){
|
2013-11-18 21:48:59 +01:00
|
|
|
if ($j('#egw_fw_header').css('display') === 'none') {
|
|
|
|
show_pixelegg_header(this, 1000);
|
|
|
|
egw.set_preference('common', 'pixelegg_header_hidden', '');
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
hide_pixelegg_header(this, 1000);
|
|
|
|
egw.set_preference('common', 'pixelegg_header_hidden', 'true');
|
|
|
|
}
|
2013-11-12 18:23:52 +01:00
|
|
|
});
|
2013-11-18 21:48:59 +01:00
|
|
|
|
|
|
|
// hide header, if pref says it is not shown
|
|
|
|
if (egw.preference('pixelegg_header_hidden')) {
|
|
|
|
hide_pixelegg_header($j('#slidetoggle'),0);
|
|
|
|
}
|
2013-11-25 04:16:41 +01:00
|
|
|
|
2013-11-12 18:23:52 +01:00
|
|
|
});
|
2013-11-18 21:48:59 +01:00
|
|
|
|
2013-11-19 00:50:53 +01:00
|
|
|
// Override jdots height calcluation
|
|
|
|
egw_fw.prototype.getIFrameHeight = function()
|
|
|
|
{
|
|
|
|
$header = $j(this.tabsUi.appHeaderContainer);
|
|
|
|
var height = $j(this.sidemenuDiv).height()-this.tabsUi.appHeaderContainer.outerHeight() - this.tabsUi.appHeader.outerHeight();
|
|
|
|
return height;
|
2013-11-25 04:16:41 +01:00
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* #egw_fw_topmenu_info_items {
|
|
|
|
bottom: 0;
|
|
|
|
display: flex;
|
|
|
|
float: right;
|
|
|
|
padding-right: 20px;
|
|
|
|
position: fixed;
|
|
|
|
text-align: right;
|
|
|
|
white-space: nowrap;
|
|
|
|
z-index: 1000;
|
|
|
|
} */
|