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/ui/icon-list-basic/iconsList.reel/iconsList.js | |
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/ui/icon-list-basic/iconsList.reel/iconsList.js')
-rw-r--r-- | js/components/ui/icon-list-basic/iconsList.reel/iconsList.js | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/js/components/ui/icon-list-basic/iconsList.reel/iconsList.js b/js/components/ui/icon-list-basic/iconsList.reel/iconsList.js new file mode 100644 index 00000000..56eb57c3 --- /dev/null +++ b/js/components/ui/icon-list-basic/iconsList.reel/iconsList.js | |||
@@ -0,0 +1,42 @@ | |||
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 | var Component = require("montage/ui/component").Component; | ||
9 | |||
10 | var IconsList = exports.IconsList = Montage.create(Component, { | ||
11 | |||
12 | anItemData:{ | ||
13 | enumerable:true, | ||
14 | value: null | ||
15 | }, | ||
16 | |||
17 | iconsViewDataObject:{ | ||
18 | writable:true, | ||
19 | enumerable:true, | ||
20 | value:[] | ||
21 | }, | ||
22 | |||
23 | willDraw: { | ||
24 | enumerable: false, | ||
25 | value: function() { | ||
26 | |||
27 | } | ||
28 | }, | ||
29 | draw: { | ||
30 | enumerable: false, | ||
31 | value: function() { | ||
32 | |||
33 | } | ||
34 | }, | ||
35 | didDraw: { | ||
36 | enumerable: false, | ||
37 | value: function() { | ||
38 | |||
39 | } | ||
40 | } | ||
41 | |||
42 | }); \ No newline at end of file | ||