From b89a7ee8b956c96a1dcee995ea840feddc5d4b27 Mon Sep 17 00:00:00 2001 From: Pierre Frisch Date: Thu, 22 Dec 2011 07:25:50 -0800 Subject: First commit of Ninja to ninja-internal Signed-off-by: Valerio Virgillito --- .../ui/icon-list-basic/iconsList.reel/iconsList.js | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 js/components/ui/icon-list-basic/iconsList.reel/iconsList.js (limited to 'js/components/ui/icon-list-basic/iconsList.reel/iconsList.js') 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 @@ +/* +This file contains proprietary software owned by Motorola Mobility, Inc.
+No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.
+(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. +
*/ + +var Montage = require("montage/core/core").Montage; +var Component = require("montage/ui/component").Component; + +var IconsList = exports.IconsList = Montage.create(Component, { + + anItemData:{ + enumerable:true, + value: null + }, + + iconsViewDataObject:{ + writable:true, + enumerable:true, + value:[] + }, + + willDraw: { + enumerable: false, + value: function() { + + } + }, + draw: { + enumerable: false, + value: function() { + + } + }, + didDraw: { + enumerable: false, + value: function() { + + } + } + +}); \ No newline at end of file -- cgit v1.2.3