X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/756c5554a2b6a23eb95a7e538b4fe45f06b644e5..e816ae7584e8b11a1e24efb2f743ac744d80485b:/modules/documentCanvas/canvas.js?ds=sidebyside
diff --git a/modules/documentCanvas/canvas.js b/modules/documentCanvas/canvas.js
index baa2f3c..be5323a 100644
--- a/modules/documentCanvas/canvas.js
+++ b/modules/documentCanvas/canvas.js
@@ -160,8 +160,20 @@ Canvas.prototype.listCreate = function(options) {
return false;
});
- var list = canvasNode.create({tag: 'div', klass: 'list-items'}).dom; //this._createNode('div', 'list-items');
- element1.before(list);
+ var list = canvasNode.create({tag: 'div', klass: 'list-items' + (options.type === 'enum' ? '-enum' : '')}).dom; //this._createNode('div', 'list-items');
+
+ var parentNode = options.start.parent();
+
+ var toret;
+ if(parentNode && parentNode.isOfClass('list-items')) {
+ list.wrap('
');
+ toret = list.parent();
+ } else {
+ toret = list;
+ }
+
+
+ element1.before(toret);
nodesToWrap.forEach(function(node) {
node.remove();
@@ -174,9 +186,19 @@ Canvas.prototype.listRemove = function(options) {
var listElement = options.pointer.getClass() === 'list-items' ? pointerElement :
pointerElement.parents('[wlxml-class|="list-items"][wlxml-tag]');
- listElement.find('[wlxml-class=item]').each(function() {
- $(this).removeAttr('wlxml-class');
- });
+ var nested = false;
+ if(listElement.length > 1) {
+ listElement = $(listElement[0]);
+ nested = true;
+ }
+
+ if(nested) {
+ listElement.unwrap();
+ } else {
+ listElement.find('[wlxml-class=item]').each(function() {
+ $(this).removeAttr('wlxml-class');
+ });
+ }
listElement.children().unwrap();
};
@@ -190,7 +212,7 @@ Canvas.prototype.getPrecedingNode = function(options) {
Canvas.prototype.nodeInsideList = function(options) {
if(options.node) {
- if(options.node.getClass() === 'list-items' || options.node.getClass() === 'item')
+ if(options.node.isOfClass('list-items') || options.node.isOfClass('item'))
return true;
var pointerElement = $(this.content.find('#' + options.node.getId()));
return pointerElement.parents('[wlxml-class=list-items], [wlxml-class=item]').length > 0;