]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/richtext.js
Merge branch 'pull/5023'
[rails.git] / app / assets / javascripts / richtext.js
1 $(document).ready(function () {
2   /*
3    * When the text in an edit pane is changed, clear the contents of
4    * the associated preview pne so that it will be regenerated when
5    * the user next switches to it.
6    */
7   $(".richtext_content textarea").change(function () {
8     $(this).parents(".richtext_container").find(".richtext_preview").empty();
9   });
10
11   /*
12    * Install a handler to switch to preview mode
13    */
14   $(".richtext_dopreview").on("show.bs.tab", function () {
15     var editor = $(this).parents(".richtext_container").find("textarea");
16     var preview = $(this).parents(".richtext_container").find(".richtext_preview");
17     var minHeight = editor.outerHeight() - preview.outerHeight() + preview.height();
18
19     if (preview.contents().length === 0) {
20       preview.oneTime(500, "loading", function () {
21         preview.addClass("loading");
22       });
23
24       preview.load(editor.data("previewUrl"), { text: editor.val() }, function () {
25         preview.stopTime("loading");
26         preview.removeClass("loading");
27       });
28     }
29
30     preview.css("min-height", minHeight + "px");
31   });
32 });