X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/70cb93a101638596ecae5782575ada2d4d08c8dd..fb0f9556513d483807e8c23675d90a1b7698f305:/app/assets/javascripts/richtext.js?ds=inline diff --git a/app/assets/javascripts/richtext.js b/app/assets/javascripts/richtext.js index 259b914de..cb0bd1f27 100644 --- a/app/assets/javascripts/richtext.js +++ b/app/assets/javascripts/richtext.js @@ -4,16 +4,19 @@ $(document).ready(function () { * the associated preview pne so that it will be regenerated when * the user next switches to it. */ - $(".richtext_content textarea").change(function () { - $(this).parents(".richtext_container").find(".richtext_preview").empty(); + $(".richtext_container textarea").change(function () { + var container = $(this).closest(".richtext_container"); + + container.find(".tab-pane[id$='_preview']").empty(); }); /* * Install a handler to switch to preview mode */ - $(".richtext_dopreview").on("show.bs.tab", function () { - var editor = $(this).parents(".richtext_container").find("textarea"); - var preview = $(this).parents(".richtext_container").find(".richtext_preview"); + $(".richtext_container button[data-bs-target$='_preview']").on("show.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(); if (preview.contents().length === 0) {