aboutsummaryrefslogtreecommitdiff
path: root/js/stage/stage.reel/stage.html
diff options
context:
space:
mode:
authorPierre Frisch2011-12-22 07:25:50 -0800
committerValerio Virgillito2012-01-27 11:18:17 -0800
commitb89a7ee8b956c96a1dcee995ea840feddc5d4b27 (patch)
tree0f3136ab0ecdbbbed6a83576581af0a53124d6f1 /js/stage/stage.reel/stage.html
parent2401f05d1f4b94d45e4568b81fc73e67b969d980 (diff)
downloadninja-b89a7ee8b956c96a1dcee995ea840feddc5d4b27.tar.gz
First commit of Ninja to ninja-internal
Signed-off-by: Valerio Virgillito <rmwh84@motorola.com>
Diffstat (limited to 'js/stage/stage.reel/stage.html')
-rw-r--r--js/stage/stage.reel/stage.html74
1 files changed, 74 insertions, 0 deletions
diff --git a/js/stage/stage.reel/stage.html b/js/stage/stage.reel/stage.html
new file mode 100644
index 00000000..49d10baf
--- /dev/null
+++ b/js/stage/stage.reel/stage.html
@@ -0,0 +1,74 @@
1<!DOCTYPE html>
2<!-- <copyright>
3 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
4 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
5 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
6 </copyright> -->
7<html>
8<head>
9 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
10 <link rel="stylesheet" type="text/css" href="stage.css">
11
12 <script type="text/montage-serialization">
13 {
14 "StageDeps1": {
15 "module": "js/stage/stage-deps",
16 "name": "StageDeps",
17 "properties": {
18 "stage": {"@": "owner"}
19 }
20 },
21
22 "layout1": {
23 "module": "js/stage/layout",
24 "name": "Layout",
25 "properties": {
26 "canvas": {"#": "layoutCanvas"},
27 "stage": {"@": "owner"}
28 },
29 "bindings": {
30 "layoutView": {
31 "boundObject": {"@": "owner" },
32 "boundObjectPropertyPath": "appModel.layoutView",
33 "oneway": true
34 }
35 }
36 },
37
38 "owner": {
39 "module": "js/stage/stage.reel",
40 "name": "Stage",
41 "properties": {
42 "element": {"#": "stageAndScenesContainer"},
43 "_iframeContainer": {"#": "iframeContainer"},
44 "codeViewContainer": {"#": "codeViewContainer"},
45 "_layoutCanvas": {"#": "layoutCanvas"},
46 "_canvas": {"#": "stageCanvas"},
47 "_drawingCanvas": {"#": "drawingCanvas"},
48 "stageDeps": {"@": "StageDeps1"},
49 "layout": {"@": "layout1"}
50 },
51 "bindings": {
52 "currentDocumentStageView": {
53 "boundObject": {"@": "owner" },
54 "boundObjectPropertyPath": "appModel.documentStageView",
55 "oneway": true
56 }
57 }
58 }
59 }
60 </script>
61
62</head>
63<body>
64
65 <section id="stageAndScenesContainer" class="stageAndScenesContainer">
66 <section id="iframeContainer"></section>
67 <section id="codeViewContainer"></section>
68 <canvas id="layoutCanvas"></canvas>
69 <canvas id="stageCanvas"></canvas>
70 <canvas id="drawingCanvas"></canvas>
71 </section>
72
73</body>
74</html>