]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/richtext.js
Add richtext help tab
[rails.git] / app / assets / javascripts / richtext.js
index 259b914de614f6d2762cbd4beb3e07ca7adc0843..cb0bd1f27188469e794e2b52cf38c5332efc0244 100644 (file)
@@ -4,16 +4,19 @@ $(document).ready(function () {
    * the associated preview pne so that it will be regenerated when
    * the user next switches to it.
    */
    * 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
    */
   });
 
   /*
    * 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) {
     var minHeight = editor.outerHeight() - preview.outerHeight() + preview.height();
 
     if (preview.contents().length === 0) {