X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/0214643f72c6aaa8e85eaba2ad27f2ca03ca6401..b5a1f98a2118706355925314bfe3027ba45464e8:/modules/documentCanvas/documentCanvas.js diff --git a/modules/documentCanvas/documentCanvas.js b/modules/documentCanvas/documentCanvas.js index 7e7fdf0..f9a8b7a 100644 --- a/modules/documentCanvas/documentCanvas.js +++ b/modules/documentCanvas/documentCanvas.js @@ -92,7 +92,7 @@ return function(sandbox) { anchor.before(newNode) else anchor.after(newNode); - mediator.nodeCreated(newNode); + this.selectNode(newNode); //isDirty = true; sandbox.publish('contentChanged'); }, @@ -115,7 +115,8 @@ return function(sandbox) { $(node).replaceWith(newNode); newNode.before(prefix); newNode.after(suffix); - mediator.nodeCreated(newNode); + + this.selectNode(newNode); //isDirty = true; sandbox.publish('contentChanged'); } @@ -141,7 +142,8 @@ return function(sandbox) { node.replaceWith(newNode); newNode.before(prefixNode); newNode.after(suffixNode); - mediator.nodeCreated(newNode); + + this.selectNode(newNode); //isDirty = true; sandbox.publish('contentChanged'); } @@ -155,9 +157,9 @@ return function(sandbox) { _markSelected: function(node) { this.dimNode(node); - this.node.find('.rng-current').removeClass('rng-current'); + this.node.find('.rng-module-documentCanvas-currentNode').removeClass('rng-module-documentCanvas-currentNode'); - node.addClass('rng-current'); + node.addClass('rng-module-documentCanvas-currentNode'); this.currentNode = node; sandbox.publish('nodeSelected', node); @@ -246,8 +248,16 @@ return function(sandbox) { }, selectNode: function(id) { view.selectNodeById(id); + }, + toggleGrid: function(toggle) { + view.toggleGrid(toggle); + }, + insertNewNode: function(wlxmlTag, wlxmlClass) { + view.insertNewNode(wlxmlTag, wlxmlClass); + }, + wrapSelectionWithNewNode: function(wlxmlTag, wlxmlClass) { + view.wrapSelectionWithNewNode(wlxmlTag, wlxmlClass); } - } };