summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/posts/templates/posts/jrnl_list.html2
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 %}