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 --- .../icon-list-basic/iconsList.reel/iconsList.css | 9 ++++ .../icon-list-basic/iconsList.reel/iconsList.html | 62 ++++++++++++++++++++++ .../ui/icon-list-basic/iconsList.reel/iconsList.js | 42 +++++++++++++++ 3 files changed, 113 insertions(+) create mode 100644 js/components/ui/icon-list-basic/iconsList.reel/iconsList.css create mode 100644 js/components/ui/icon-list-basic/iconsList.reel/iconsList.html create mode 100644 js/components/ui/icon-list-basic/iconsList.reel/iconsList.js (limited to 'js/components/ui/icon-list-basic/iconsList.reel') diff --git a/js/components/ui/icon-list-basic/iconsList.reel/iconsList.css b/js/components/ui/icon-list-basic/iconsList.reel/iconsList.css new file mode 100644 index 00000000..b4d4cffd --- /dev/null +++ b/js/components/ui/icon-list-basic/iconsList.reel/iconsList.css @@ -0,0 +1,9 @@ +/* + 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. +
*/ + +.list{ + +} diff --git a/js/components/ui/icon-list-basic/iconsList.reel/iconsList.html b/js/components/ui/icon-list-basic/iconsList.reel/iconsList.html new file mode 100644 index 00000000..50a1d61d --- /dev/null +++ b/js/components/ui/icon-list-basic/iconsList.reel/iconsList.html @@ -0,0 +1,62 @@ + + + + + + + + + +
+
+
+
+
+ + \ No newline at end of file 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