]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/richtext.js
Remove .richtext_preview css class
[rails.git] / app / assets / javascripts / richtext.js
index 7da465d29f9b78fbb60a6ad9d6c6418cd98b61bd..7447a0ca2c313a7f5c95f6293b287a812639daa0 100644 (file)
@@ -4,8 +4,8 @@ $(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 () {
+    $(this).parents(".richtext_container").find(".tab-pane[id$='_preview']").empty();
   });
 
   /*
@@ -13,7 +13,7 @@ $(document).ready(function () {
    */
   $(".richtext_container button[data-bs-target$='_preview']").on("show.bs.tab", function () {
     var editor = $(this).parents(".richtext_container").find("textarea");
-    var preview = $(this).parents(".richtext_container").find(".richtext_preview");
+    var preview = $(this).parents(".richtext_container").find(".tab-pane[id$='_preview']");
     var minHeight = editor.outerHeight() - preview.outerHeight() + preview.height();
 
     if (preview.contents().length === 0) {