fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Minor editing improvements.
[redakcja.git]
/
src
/
redakcja
/
static
/
js
/
wiki
/
view_editor_wysiwyg.js
diff --git
a/src/redakcja/static/js/wiki/view_editor_wysiwyg.js
b/src/redakcja/static/js/wiki/view_editor_wysiwyg.js
index
4a3cd6b
..
3d4ca02
100644
(file)
--- a/
src/redakcja/static/js/wiki/view_editor_wysiwyg.js
+++ b/
src/redakcja/static/js/wiki/view_editor_wysiwyg.js
@@
-110,7
+110,7
@@
success: function(text){
var t = $(text);
tag.replaceWith(t);
success: function(text){
var t = $(text);
tag.replaceWith(t);
- openForEdit(t);
+ openForEdit(t
, trim=false
);
},
error: function(){
tag.remove();
},
error: function(){
tag.remove();
@@
-405,7
+405,7
@@
}
/* open edition window for selected fragment */
}
/* 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 //
var $box = null
// annotations overlay their sub box - not their own box //
@@
-515,7
+515,10
@@
element: source,
stripOuter: true,
success: function(text){
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(){
$('textarea', $overlay).val(ttext);
setTimeout(function(){