diff options
Diffstat (limited to 'js/stage/stage.reel/stage.html')
-rwxr-xr-x[-rw-r--r--] | js/stage/stage.reel/stage.html | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/js/stage/stage.reel/stage.html b/js/stage/stage.reel/stage.html index 49d10baf..812e3d55 100644..100755 --- a/js/stage/stage.reel/stage.html +++ b/js/stage/stage.reel/stage.html | |||
@@ -11,6 +11,14 @@ | |||
11 | 11 | ||
12 | <script type="text/montage-serialization"> | 12 | <script type="text/montage-serialization"> |
13 | { | 13 | { |
14 | "stageView" : { | ||
15 | "module": "js/stage/stage-view.reel", | ||
16 | "name": "StageView", | ||
17 | "properties": { | ||
18 | "element": {"#": "stageView"} | ||
19 | } | ||
20 | }, | ||
21 | |||
14 | "StageDeps1": { | 22 | "StageDeps1": { |
15 | "module": "js/stage/stage-deps", | 23 | "module": "js/stage/stage-deps", |
16 | "name": "StageDeps", | 24 | "name": "StageDeps", |
@@ -34,6 +42,14 @@ | |||
34 | } | 42 | } |
35 | } | 43 | } |
36 | }, | 44 | }, |
45 | |||
46 | "textTool": { | ||
47 | "module": "node_modules/labs/rich-text-editor.reel", | ||
48 | "name": "RichTextEditor", | ||
49 | "properties": { | ||
50 | "element" : {"#": "textToolObject"} | ||
51 | } | ||
52 | }, | ||
37 | 53 | ||
38 | "owner": { | 54 | "owner": { |
39 | "module": "js/stage/stage.reel", | 55 | "module": "js/stage/stage.reel", |
@@ -41,12 +57,13 @@ | |||
41 | "properties": { | 57 | "properties": { |
42 | "element": {"#": "stageAndScenesContainer"}, | 58 | "element": {"#": "stageAndScenesContainer"}, |
43 | "_iframeContainer": {"#": "iframeContainer"}, | 59 | "_iframeContainer": {"#": "iframeContainer"}, |
44 | "codeViewContainer": {"#": "codeViewContainer"}, | ||
45 | "_layoutCanvas": {"#": "layoutCanvas"}, | 60 | "_layoutCanvas": {"#": "layoutCanvas"}, |
46 | "_canvas": {"#": "stageCanvas"}, | 61 | "_canvas": {"#": "stageCanvas"}, |
47 | "_drawingCanvas": {"#": "drawingCanvas"}, | 62 | "_drawingCanvas": {"#": "drawingCanvas"}, |
48 | "stageDeps": {"@": "StageDeps1"}, | 63 | "stageDeps": {"@": "StageDeps1"}, |
49 | "layout": {"@": "layout1"} | 64 | "layout": {"@": "layout1"}, |
65 | "stageView": {"@": "stageView"}, | ||
66 | "textTool": {"@": "textTool"} | ||
50 | }, | 67 | }, |
51 | "bindings": { | 68 | "bindings": { |
52 | "currentDocumentStageView": { | 69 | "currentDocumentStageView": { |
@@ -63,8 +80,9 @@ | |||
63 | <body> | 80 | <body> |
64 | 81 | ||
65 | <section id="stageAndScenesContainer" class="stageAndScenesContainer"> | 82 | <section id="stageAndScenesContainer" class="stageAndScenesContainer"> |
83 | <section id="stageView"></section> | ||
66 | <section id="iframeContainer"></section> | 84 | <section id="iframeContainer"></section> |
67 | <section id="codeViewContainer"></section> | 85 | <section id="textToolObject"></section> |
68 | <canvas id="layoutCanvas"></canvas> | 86 | <canvas id="layoutCanvas"></canvas> |
69 | <canvas id="stageCanvas"></canvas> | 87 | <canvas id="stageCanvas"></canvas> |
70 | <canvas id="drawingCanvas"></canvas> | 88 | <canvas id="drawingCanvas"></canvas> |