diff options
author | luxagraf <sng@luxagraf.net> | 2024-11-23 11:27:34 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2024-11-23 11:27:34 -0600 |
commit | ea4bb7eacd259a15b9e9d799c1d3a31506baaa1b (patch) | |
tree | 9f9e7f4b4c4fd232846b38590354a357a767fa26 /app/posts | |
parent | 77f7230117242d4d525a49147cc59f388d68f6d2 (diff) |
jrnl: more iframe debugging
Diffstat (limited to 'app/posts')
-rw-r--r-- | app/posts/templates/posts/jrnl_list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/posts/templates/posts/jrnl_list.html b/app/posts/templates/posts/jrnl_list.html index 0242512..8e3c4df 100644 --- a/app/posts/templates/posts/jrnl_list.html +++ b/app/posts/templates/posts/jrnl_list.html @@ -48,7 +48,7 @@ <script> function resizeIframe(obj) { console.log((obj.contentWindow.document.body.scrollHeight - 50) + 'px'); - obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px'; + obj.style.height = (obj.contentWindow.document.body.scrollHeight - 50) + 'px'; } </script> {% endblock %} |