Minor editing improvements.
[redakcja.git] / src / redakcja / static / js / wiki / view_editor_wysiwyg.js
index 4a3cd6b..3d4ca02 100644 (file)
             success: function(text){
                 var t = $(text);
                 tag.replaceWith(t);
-                openForEdit(t);
+                openForEdit(t, trim=false);
             },
             error: function(){
                 tag.remove();
     }
 
     /* open edition window for selected fragment */
-    function openForEdit($origin){
+    function openForEdit($origin, trim=true){
         var $box = null
 
         // annotations overlay their sub box - not their own box //
             element: source,
             stripOuter: true,
             success: function(text){
-               let ttext = $.trim(text);
+               let ttext = text;
+               if (trim) {
+                   ttext = ttext.trim();
+               }
                 $('textarea', $overlay).val(ttext);
 
                 setTimeout(function(){