From becdfc02dc816d594bcad03cbcbab7aac550da5f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Aleksander=20=C5=81ukasz?= Date: Fri, 17 Jan 2014 16:17:56 +0100 Subject: [PATCH] editor: fix minor bug --- src/editor/modules/documentCanvas/commands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editor/modules/documentCanvas/commands.js b/src/editor/modules/documentCanvas/commands.js index b4f034a..7987a79 100644 --- a/src/editor/modules/documentCanvas/commands.js +++ b/src/editor/modules/documentCanvas/commands.js @@ -160,7 +160,7 @@ commands.register('newNodeRequested', function(canvas, params) { canvas.wlxmlDocument.wrapNodes({ node1: siblingParents.node1, node2: siblingParents.node2, - _with: {tagName: params.wlxmlTag, attrs: {klass: params.wlxmlClass}} + _with: {tagName: params.wlxmlTag, attrs: {'class': params.wlxmlClass}} }); } } -- 2.20.1