]> git.openstreetmap.org Git - rails.git/commitdiff
Don't set width of richtext preview
authorAnton Khorev <tony29@yandex.ru>
Fri, 7 Jun 2024 15:00:09 +0000 (18:00 +0300)
committerAnton Khorev <tony29@yandex.ru>
Fri, 7 Jun 2024 15:00:09 +0000 (18:00 +0300)
app/assets/javascripts/richtext.js

index ea2efcfadc33b74e5b7f11a4988ed47ada2e0f68..3036f169b07ed34c6ec3d45b9176c21e01dcc23a 100644 (file)
@@ -41,7 +41,6 @@ $(document).ready(function () {
   $(".richtext_dopreview").click(function (event) {
     var editor = $(this).parents(".richtext_container").find("textarea");
     var preview = $(this).parents(".richtext_container").find(".richtext_preview");
-    var width = editor.outerWidth() - preview.outerWidth() + preview.width();
     var minHeight = editor.outerHeight() - preview.outerHeight() + preview.height();
 
     if (preview.contents().length === 0) {
@@ -56,7 +55,6 @@ $(document).ready(function () {
     }
 
     editor.hide();
-    preview.width(width);
     preview.css("min-height", minHeight + "px");
     preview.show();