diff options
author | luxagraf <sng@luxagraf.net> | 2020-12-04 15:23:46 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-12-04 15:23:46 -0500 |
commit | 3c41fd7b519137c091b3a5a6f42a6a55cac31f94 (patch) | |
tree | 651eb3c48439b69453c43a4795fb715780804331 | |
parent | e6501f415e599f303d21d23ad254241446725415 (diff) |
fixed another reference to entry
-rw-r--r-- | app/utils/static/image-loader.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/utils/static/image-loader.js b/app/utils/static/image-loader.js index 2744251..a2f9049 100644 --- a/app/utils/static/image-loader.js +++ b/app/utils/static/image-loader.js @@ -41,7 +41,7 @@ function add_images(){ } document.addEventListener("DOMContentLoaded", function(event) { add_images(); - md = document.forms["entry_form"].elements["body_markdown"]; + md = document.forms["post_form"].elements["body_markdown"]; md.style.maxHeight = "300rem"; md.style.maxWidth = "300rem"; }); |