diff options
Diffstat (limited to 'js/components/tools-properties/oval-properties.reel/oval-properties.html')
-rw-r--r-- | js/components/tools-properties/oval-properties.reel/oval-properties.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/js/components/tools-properties/oval-properties.reel/oval-properties.html b/js/components/tools-properties/oval-properties.reel/oval-properties.html new file mode 100644 index 00000000..942ba9b0 --- /dev/null +++ b/js/components/tools-properties/oval-properties.reel/oval-properties.html | |||
@@ -0,0 +1,46 @@ | |||
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="oval-properties.css"> | ||
11 | |||
12 | <script type="text/montage-serialization"> | ||
13 | { | ||
14 | "hottext1": { | ||
15 | "module": "js/components/hottextunit.reel", | ||
16 | "name": "HotTextUnit", | ||
17 | "properties": { | ||
18 | "element": {"#": "innerRadiusControl"}, | ||
19 | "minValue":0, | ||
20 | "maxValue" :99, | ||
21 | "value" :0, | ||
22 | "acceptableUnits" : ["%"], | ||
23 | "units" : "%" | ||
24 | } | ||
25 | }, | ||
26 | |||
27 | "owner": { | ||
28 | "module": "js/components/tools-properties/oval-properties.reel", | ||
29 | "name": "OvalProperties", | ||
30 | "properties": { | ||
31 | "element": {"#": "ovalProperties"}, | ||
32 | "innerRadius": {"@": "hottext1"} | ||
33 | } | ||
34 | } | ||
35 | } | ||
36 | </script> | ||
37 | </head> | ||
38 | |||
39 | <body> | ||
40 | <div id="ovalProperties"> | ||
41 | <label class="label">Inner Radius:</label> | ||
42 | <div id="innerRadiusControl" class="label"></div> | ||
43 | </div> | ||
44 | </body> | ||
45 | |||
46 | </html> \ No newline at end of file | ||