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 --- .../montage/ui/loading-panel.reel/loading-panel.js | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 node_modules/montage/ui/loading-panel.reel/loading-panel.js (limited to 'node_modules/montage/ui/loading-panel.reel/loading-panel.js') diff --git a/node_modules/montage/ui/loading-panel.reel/loading-panel.js b/node_modules/montage/ui/loading-panel.reel/loading-panel.js new file mode 100755 index 00000000..61bde475 --- /dev/null +++ b/node_modules/montage/ui/loading-panel.reel/loading-panel.js @@ -0,0 +1,38 @@ +/* + 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. +
*/ + +/** + @module "montage/ui/loading-panel.reel" +*/ + +var Montage = require("montage").Montage, + Component = require("ui/component").Component; + +/** + @class module:montage/ui/loading-panel.LoadingPanel + @extends module:montage/ui/component.Component + */ + +exports.LoadingPanel = Montage.create(Component, /** @lends module:montage/ui/loading-panel.LoadingPanel# */ { + +/** + The number of modules that are required to load. +*/ + requiredModuleCount: { + enumerable: false, + value: 0 + }, + +/** + The number of modules that have been initialized. +*/ + initializedModuleCount: { + enumerable: false, + value: 0 + } + + +}); -- cgit v1.2.3