From 88bcc85ad9caa52f4c2f443b9c4a70f8165abc99 Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Mon, 18 Nov 2013 23:50:53 +0000 Subject: [PATCH] Override jdots tab content height calculation for pixelegg --- pixelegg/js/slider.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pixelegg/js/slider.js b/pixelegg/js/slider.js index 9bad3b248e..77b9d1f200 100644 --- a/pixelegg/js/slider.js +++ b/pixelegg/js/slider.js @@ -49,4 +49,11 @@ egw_LAB.wait(function() { } }); + // 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; + } }); \ No newline at end of file