X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/a9fa75687896fb4302052a04ed8f7f202a5d6852..d010e280af51bb98513615e3f394019490684880:/app/assets/javascripts/richtext.js diff --git a/app/assets/javascripts/richtext.js b/app/assets/javascripts/richtext.js index 0ff25bc0a..1576656ee 100644 --- a/app/assets/javascripts/richtext.js +++ b/app/assets/javascripts/richtext.js @@ -10,6 +10,19 @@ $(document).ready(function () { container.find(".tab-pane[id$='_preview']").empty(); }); + /* + * Install a handler to set the minimum preview pane height + * when switching away from an edit pane + */ + $(".richtext_container button[data-bs-target$='_edit']").on("hide.bs.tab", function () { + var container = $(this).closest(".richtext_container"); + var editor = container.find("textarea"); + var preview = container.find(".tab-pane[id$='_preview']"); + var minHeight = editor.outerHeight() - preview.outerHeight() + preview.height(); + + preview.css("min-height", minHeight + "px"); + }); + /* * Install a handler to switch to preview mode */ @@ -17,7 +30,6 @@ $(document).ready(function () { var container = $(this).closest(".richtext_container"); var editor = container.find("textarea"); var preview = container.find(".tab-pane[id$='_preview']"); - var minHeight = editor.outerHeight() - preview.outerHeight() + preview.height(); if (preview.contents().length === 0) { preview.oneTime(500, "loading", function () { @@ -29,8 +41,6 @@ $(document).ready(function () { preview.removeClass("loading"); }); } - - preview.css("min-height", minHeight + "px"); }); var updateHelp = function () {