aboutsummaryrefslogtreecommitdiff
path: root/js/components/ui/icon-list-basic/iconsList.reel/iconsList.js
diff options
context:
space:
mode:
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.js42
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>
2This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3No 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
7var Montage = require("montage/core/core").Montage;
8var Component = require("montage/ui/component").Component;
9
10var 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