integration wip: wrap/unwrap node commands
[fnpeditor.git] / src / editor / modules / documentCanvas / documentCanvas.js
index 3ebab2e..a398f26 100644 (file)
@@ -10,7 +10,7 @@ define([
 
 return function(sandbox) {
 
-    var canvas = canvas3.fromXML('', sandbox.publish);
+    var canvas = canvas3.fromXMLDocument(null, sandbox.publish);
     var canvasWrapper = $(template);
     var shownAlready = false;
     var scrollbarPosition = 0,
@@ -37,10 +37,9 @@ return function(sandbox) {
         getView: function() { 
             return canvasWrapper;
         },
-        setDocument: function(xml) {
-            canvas.loadWlxml(xml);
+        setDocument: function(wlxmlDocument) {
+            canvas.loadWlxmlDocument(wlxmlDocument);
             canvasWrapper.find('#rng-module-documentCanvas-content').empty().append(canvas.view());
-            sandbox.publish('documentSet');
         },
         getDocument: function() {
             return canvas.toXML();