diff options
Diffstat (limited to 'js')
-rw-r--r-- | js/components/tools-properties/text-properties.reel/text-properties.js | 1 | ||||
-rw-r--r-- | js/stage/stage.reel/stage.html | 2 | ||||
-rw-r--r-- | js/tools/TextTool.js | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/js/components/tools-properties/text-properties.reel/text-properties.js b/js/components/tools-properties/text-properties.reel/text-properties.js index de0b5fa3..dac30da0 100644 --- a/js/components/tools-properties/text-properties.reel/text-properties.js +++ b/js/components/tools-properties/text-properties.reel/text-properties.js | |||
@@ -61,7 +61,6 @@ exports.TextProperties = Montage.create(ToolProperties, { | |||
61 | 61 | ||
62 | handleEditorSelect: { | 62 | handleEditorSelect: { |
63 | value: function(e) { | 63 | value: function(e) { |
64 | console.log("hello"); | ||
65 | this.application.ninja.stage.textTool.updateStates(); | 64 | this.application.ninja.stage.textTool.updateStates(); |
66 | } | 65 | } |
67 | }, | 66 | }, |
diff --git a/js/stage/stage.reel/stage.html b/js/stage/stage.reel/stage.html index 07b823a7..623c54b8 100644 --- a/js/stage/stage.reel/stage.html +++ b/js/stage/stage.reel/stage.html | |||
@@ -36,7 +36,7 @@ | |||
36 | }, | 36 | }, |
37 | 37 | ||
38 | "textTool": { | 38 | "textTool": { |
39 | "module": "montage/ui/rich-text-editor.reel", | 39 | "module": "node_modules/labs/rich-text-editor.reel", |
40 | "name": "RichTextEditor", | 40 | "name": "RichTextEditor", |
41 | "properties": { | 41 | "properties": { |
42 | "element" : {"#": "textToolObject"} | 42 | "element" : {"#": "textToolObject"} |
diff --git a/js/tools/TextTool.js b/js/tools/TextTool.js index 28e7ddf3..910a9eef 100644 --- a/js/tools/TextTool.js +++ b/js/tools/TextTool.js | |||
@@ -6,7 +6,7 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot | |||
6 | 6 | ||
7 | var Montage = require("montage/core/core").Montage, | 7 | var Montage = require("montage/core/core").Montage, |
8 | DrawingTool = require("js/tools/drawing-tool").DrawingTool; | 8 | DrawingTool = require("js/tools/drawing-tool").DrawingTool; |
9 | RichTextEditor = require("montage/ui/rich-text-editor.reel").RichTextEditor; | 9 | RichTextEditor = require("node_modules/labs/rich-text-editor.reel").RichTextEditor; |
10 | 10 | ||
11 | exports.TextTool = Montage.create(DrawingTool, { | 11 | exports.TextTool = Montage.create(DrawingTool, { |
12 | 12 | ||