Fix iframe's too large in book details panel on Firefox

This commit is contained in:
Kovid Goyal 2017-05-19 10:48:22 +05:30
parent e13ae2da4e
commit 2d403e9d64
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -92,7 +92,8 @@ def on_fmt_click(ev):
def adjust_iframe_height(iframe): def adjust_iframe_height(iframe):
de = iframe.contentWindow.document.documentElement de = iframe.contentWindow.document.documentElement
iframe.style.height = max(de.scrollHeight, de.offsetHeight) + 5 + 'px' # scrollHeight is inaccurate on Firefox
iframe.style.height = de.offsetHeight + 5 + 'px'
iframe.dataset.last_window_width = window.innerWidth + '' iframe.dataset.last_window_width = window.innerWidth + ''