diff options
author | Pierre Frisch | 2011-12-22 07:25:50 -0800 |
---|---|---|
committer | Valerio Virgillito | 2012-01-27 11:18:17 -0800 |
commit | b89a7ee8b956c96a1dcee995ea840feddc5d4b27 (patch) | |
tree | 0f3136ab0ecdbbbed6a83576581af0a53124d6f1 /js/components/colorwheel.reel/colorwheel.html | |
parent | 2401f05d1f4b94d45e4568b81fc73e67b969d980 (diff) | |
download | ninja-b89a7ee8b956c96a1dcee995ea840feddc5d4b27.tar.gz |
First commit of Ninja to ninja-internal
Signed-off-by: Valerio Virgillito <rmwh84@motorola.com>
Diffstat (limited to 'js/components/colorwheel.reel/colorwheel.html')
-rw-r--r-- | js/components/colorwheel.reel/colorwheel.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/js/components/colorwheel.reel/colorwheel.html b/js/components/colorwheel.reel/colorwheel.html new file mode 100644 index 00000000..0374e6a3 --- /dev/null +++ b/js/components/colorwheel.reel/colorwheel.html | |||
@@ -0,0 +1,50 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <!-- | ||
3 | <copyright> | ||
4 | This file contains proprietary software owned by Motorola Mobility, Inc. | ||
5 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder. | ||
6 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
7 | </copyright> | ||
8 | --> | ||
9 | <html lang="en"> | ||
10 | <head> | ||
11 | |||
12 | <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
13 | |||
14 | <link rel="stylesheet" type="text/css" href="css/colorwheel.css"> | ||
15 | |||
16 | <script type="text/m-objects"> | ||
17 | { | ||
18 | "$rootObject": U("m-obj://colorwheel/uuid?mId=js/components/colorwheel", { | ||
19 | "element": E("#colorwheel") | ||
20 | }) | ||
21 | } | ||
22 | </script> | ||
23 | |||
24 | <script type="text/montage-serialization"> | ||
25 | { | ||
26 | "owner": { | ||
27 | "module": "js/components/colorwheel.reel", | ||
28 | "name": "ColorWheel", | ||
29 | "properties": { | ||
30 | "element": {"#": "colorwheel"} | ||
31 | |||
32 | } | ||
33 | } | ||
34 | } | ||
35 | </script> | ||
36 | |||
37 | </head> | ||
38 | |||
39 | <body> | ||
40 | |||
41 | <div id="colorwheel" class="colorwheel"> | ||
42 | <canvas></canvas> | ||
43 | <canvas></canvas> | ||
44 | <canvas></canvas> | ||
45 | <canvas></canvas> | ||
46 | </div> | ||
47 | |||
48 | </body> | ||
49 | |||
50 | </html> \ No newline at end of file | ||