fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Allow for wrapping current node element when there is no selection
[fnpeditor.git]
/
modules
/
documentCanvas
/
canvas
/
documentElement.js
diff --git
a/modules/documentCanvas/canvas/documentElement.js
b/modules/documentCanvas/canvas/documentElement.js
index
7dd1f7d
..
0558a3e
100644
(file)
--- a/
modules/documentCanvas/canvas/documentElement.js
+++ b/
modules/documentCanvas/canvas/documentElement.js
@@
-148,8
+148,10
@@
$.extend(DocumentNodeElement, {
}
element.data('other-attrs', params.others);
}
element.data('other-attrs', params.others);
- if(params.rawChildren) {
+ if(params.rawChildren
&& params.rawChildren.length
) {
container.append(params.rawChildren);
container.append(params.rawChildren);
+ } else if(params.prepopulateOnEmpty) {
+ element.append(DocumentTextElement.create({text: ''}));
}
return dom;
},
}
return dom;
},