fix iframe mode fullscreen height calculation

pull/3395/head
REJack 2021-02-10 08:20:01 +01:00
parent 966a9b0178
commit 1b66775d4b
1 changed files with 2 additions and 2 deletions

View File

@ -300,9 +300,9 @@ class IFrame {
_fixHeight(tabEmpty = false) { _fixHeight(tabEmpty = false) {
if ($('body').hasClass(CLASS_NAME_FULLSCREEN_MODE)) { if ($('body').hasClass(CLASS_NAME_FULLSCREEN_MODE)) {
const windowHeight = $(window).height() const windowHeight = $(window).height()
$(`${SELECTOR_TAB_EMPTY}, ${SELECTOR_TAB_LOADING}`).height(windowHeight) const navbarHeight = $(SELECTOR_TAB_NAV).outerHeight()
$(`${SELECTOR_TAB_EMPTY}, ${SELECTOR_TAB_LOADING}, ${SELECTOR_CONTENT_IFRAME}`).height(windowHeight - navbarHeight)
$(SELECTOR_CONTENT_WRAPPER).height(windowHeight) $(SELECTOR_CONTENT_WRAPPER).height(windowHeight)
$(SELECTOR_CONTENT_IFRAME).height(windowHeight)
} else { } else {
const contentWrapperHeight = parseFloat($(SELECTOR_CONTENT_WRAPPER).css('height')) const contentWrapperHeight = parseFloat($(SELECTOR_CONTENT_WRAPPER).css('height'))
const navbarHeight = $(SELECTOR_TAB_NAV).outerHeight() const navbarHeight = $(SELECTOR_TAB_NAV).outerHeight()