editor: Better invalid cursor handling
[fnpeditor.git] / src / editor / modules / documentToolbar / documentToolbar.js
index 84361ad..33f95a6 100644 (file)
@@ -9,7 +9,7 @@ return function(sandbox) {
         currentNode;
 
     var view = {
-        node: $(_.template(template)({tagNames: wlxmlUtils.wlxmlTagNames, classNames: wlxmlUtils.wlxmlClassNames, templates: documentTemplates})),
+        node: $(_.template(template)({wlxmlUtils: wlxmlUtils, templates: documentTemplates})),
         setup: function() {
             var view = this;
             
@@ -50,6 +50,8 @@ return function(sandbox) {
                         };
                     }
 
+                    _.extend(params, {ctrlKey: e.ctrlKey});
+
                     sandbox.publish('command', command, params);
                 }
             });