X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/0214643f72c6aaa8e85eaba2ad27f2ca03ca6401..f372f2a7ad1cf8d0c9320559d406a1df4ea53a12:/modules/documentCanvas/documentCanvas.js diff --git a/modules/documentCanvas/documentCanvas.js b/modules/documentCanvas/documentCanvas.js index 7e7fdf0..ac978f2 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'); } @@ -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); } - } };