diff options
author | Valerio Virgillito | 2012-02-09 13:35:15 -0800 |
---|---|---|
committer | Valerio Virgillito | 2012-02-09 13:35:15 -0800 |
commit | cebd27bd649d01c8b8713651df3878da14b5e9a8 (patch) | |
tree | 3d20d838f2f6892a07cf16c4c959e234f96ee60b /js/panels/Timeline/Tween.reel/Tween.html | |
parent | 666ae3e9119410cbf7fa974274d95336aaff091c (diff) | |
parent | 2092acf520e3f346f15e42c76c2f616e7d094c97 (diff) | |
download | ninja-cebd27bd649d01c8b8713651df3878da14b5e9a8.tar.gz |
Merge branch 'Timeline' of https://github.com/imix23ways/ninja-internal into feature-branch
Conflicts:
js/helper-classes/RDGE/Materials/FlatMaterial.js
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'js/panels/Timeline/Tween.reel/Tween.html')
-rw-r--r-- | js/panels/Timeline/Tween.reel/Tween.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/js/panels/Timeline/Tween.reel/Tween.html b/js/panels/Timeline/Tween.reel/Tween.html new file mode 100644 index 00000000..307dcd02 --- /dev/null +++ b/js/panels/Timeline/Tween.reel/Tween.html | |||
@@ -0,0 +1,48 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html lang="en"> | ||
3 | <head> | ||
4 | <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
5 | <link rel="stylesheet" type="text/css" href="css/Tween.css"> | ||
6 | <script type="text/montage-serialization"> | ||
7 | { | ||
8 | "owner": { | ||
9 | "module": "js/panels/Timeline/Tween.reel", | ||
10 | "name": "Tween", | ||
11 | "properties": { | ||
12 | "element": {"#": "tweenspace"}, | ||
13 | "keyframe": {"@": "keyframe"}, | ||
14 | "span": {"@": "span"}, | ||
15 | "tweencontainer": {"#": "tweencontainer"} | ||
16 | } | ||
17 | }, | ||
18 | |||
19 | "span": { | ||
20 | "module": "js/panels/Timeline/Span.reel", | ||
21 | "name": "Span", | ||
22 | "properties": { | ||
23 | "element": {"#": "span_container"} | ||
24 | } | ||
25 | }, | ||
26 | |||
27 | "keyframe": { | ||
28 | "module": "js/panels/Timeline/Keyframe.reel", | ||
29 | "name": "Keyframe", | ||
30 | "properties": { | ||
31 | "element": {"#": "keyframe_container"}, | ||
32 | "containingSpan": {"@": "span"} | ||
33 | } | ||
34 | } | ||
35 | } | ||
36 | </script> | ||
37 | </head> | ||
38 | <body> | ||
39 | |||
40 | <div id="tweenspace"> | ||
41 | <div id="tweencontainer" class="tween_container"> | ||
42 | <div id="span_container"></div> | ||
43 | <div id="keyframe_container"></div> | ||
44 | </div> | ||
45 | </div> | ||
46 | |||
47 | </body> | ||
48 | </html> \ No newline at end of file | ||