X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/bf404a740c73d3aa8df7a44ef47012f33933e624..e03e917292152f4a726a4eea2a57da8d234fb683:/src/editor/modules/documentCanvas/documentCanvas.js?ds=sidebyside diff --git a/src/editor/modules/documentCanvas/documentCanvas.js b/src/editor/modules/documentCanvas/documentCanvas.js index aa38e79..da7ac81 100644 --- a/src/editor/modules/documentCanvas/documentCanvas.js +++ b/src/editor/modules/documentCanvas/documentCanvas.js @@ -2,10 +2,9 @@ define([ 'libs/jquery', -'libs/underscore', './canvas/canvas', './commands', -'libs/text!./template.html'], function($, _, canvas3, commands, template) { +'libs/text!./template.html'], function($, canvas3, commands, template) { 'use strict'; @@ -61,7 +60,7 @@ return function(sandbox) { canvas.setCurrentElement(node); }, command: function(command, params) { - commands.run(command, params, canvas); + commands.run(command, params, canvas, sandbox.getConfig().user); sandbox.publish('contentChanged'); } };