diff options
Diffstat (limited to 'js')
81 files changed, 2850 insertions, 815 deletions
diff --git a/js/components/button.reel/button.css b/js/components/button.reel/button.css deleted file mode 100755 index f50a9873..00000000 --- a/js/components/button.reel/button.css +++ /dev/null | |||
@@ -1,40 +0,0 @@ | |||
1 | /* <copyright> | ||
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
3 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
5 | </copyright> */ | ||
6 | |||
7 | .button { | ||
8 | border:none; | ||
9 | cursor:default; | ||
10 | text-align:center; | ||
11 | -webkit-user-select:none; | ||
12 | opacity:0.8; | ||
13 | display:table-cell; | ||
14 | vertical-align:middle; | ||
15 | width:100%; | ||
16 | height:100%; | ||
17 | background-color:#333333; | ||
18 | color:white; | ||
19 | } | ||
20 | |||
21 | .button:hover | ||
22 | { | ||
23 | opacity:1; | ||
24 | } | ||
25 | |||
26 | .button:active | ||
27 | { | ||
28 | outline:solid 1px black; | ||
29 | } | ||
30 | |||
31 | .button.on | ||
32 | { | ||
33 | background-color: #333333; | ||
34 | } | ||
35 | |||
36 | .button.off | ||
37 | { | ||
38 | background-color: #cccccc; | ||
39 | color:black; | ||
40 | } \ No newline at end of file | ||
diff --git a/js/components/button.reel/button.html b/js/components/button.reel/button.html deleted file mode 100755 index d0398a6a..00000000 --- a/js/components/button.reel/button.html +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
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="button.css"> | ||
11 | <script type="text/montage-serialization"> | ||
12 | { | ||
13 | "owner": { | ||
14 | "module": "js/components/button.reel", | ||
15 | "name": "Button", | ||
16 | "properties": { | ||
17 | "element": {"#": "button"} | ||
18 | } | ||
19 | } | ||
20 | } | ||
21 | </script> | ||
22 | </head> | ||
23 | <body> | ||
24 | <button id="button" class="button"></button> | ||
25 | </body> | ||
26 | </html> \ No newline at end of file | ||
diff --git a/js/components/button.reel/button.js b/js/components/button.reel/button.js deleted file mode 100755 index 2d26c8b4..00000000 --- a/js/components/button.reel/button.js +++ /dev/null | |||
@@ -1,225 +0,0 @@ | |||
1 | /* <copyright> | ||
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
3 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
5 | </copyright> */ | ||
6 | |||
7 | var Montage = require("montage/core/core").Montage, | ||
8 | Component = require("montage/ui/component").Component; | ||
9 | |||
10 | var Button = exports.Button = Montage.create(Component, { | ||
11 | // Button state | ||
12 | _focused: { | ||
13 | value: false | ||
14 | }, | ||
15 | |||
16 | _pressed: { | ||
17 | value: false | ||
18 | }, | ||
19 | |||
20 | _isToggleButton: { | ||
21 | value: false | ||
22 | }, | ||
23 | |||
24 | isToggleButton: { | ||
25 | serializable: true, |