diff options
author | Valerio Virgillito | 2012-02-07 17:42:04 -0800 |
---|---|---|
committer | Valerio Virgillito | 2012-02-07 17:42:04 -0800 |
commit | 9a404b8a717d0aac0eabb828a4d3cdc8c9c3eed8 (patch) | |
tree | 64226f2ce5de778e0017ca0b0c560e9ac95df861 /js/tools | |
parent | a930295dfebd7fe7b4db5324b2048e6e7366c6d8 (diff) | |
download | ninja-9a404b8a717d0aac0eabb828a4d3cdc8c9c3eed8.tar.gz |
IKNINJA - 1084: Fixing the custom tag.
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'js/tools')
-rw-r--r-- | js/tools/TagTool.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/js/tools/TagTool.js b/js/tools/TagTool.js index 73a0ae5c..e3f49bbe 100644 --- a/js/tools/TagTool.js +++ b/js/tools/TagTool.js | |||
@@ -168,9 +168,7 @@ exports.TagTool = Montage.create(DrawingTool, { | |||
168 | } else if(selectedTag === "canvasTool") { | 168 | } else if(selectedTag === "canvasTool") { |
169 | newTag = NJUtils.makeNJElement("canvas", "canvas", "canvas"); | 169 | newTag = NJUtils.makeNJElement("canvas", "canvas", "canvas"); |
170 | } else if(selectedTag === "customTool") { | 170 | } else if(selectedTag === "customTool") { |
171 | newTag = document.createElement(this.options.customName.value); | 171 | newTag = NJUtils.makeNJElement(this.options.customName.value, this.options.customName.value, "block"); |
172 | newTag.Ninja = {}; | ||
173 | newTag.Ninja.selectionType = this.options.customName.value; | ||
174 | } | 172 | } |
175 | /* SWF Tag tool - Not used for now. Will revisit this at a later time. | 173 | /* SWF Tag tool - Not used for now. Will revisit this at a later time. |
176 | else if(selectedTag === "flashTool") { | 174 | else if(selectedTag === "flashTool") { |