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 --- node_modules/montage/ui/loading.reel/loading.js | 61 +++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100755 node_modules/montage/ui/loading.reel/loading.js (limited to 'node_modules/montage/ui/loading.reel/loading.js') diff --git a/node_modules/montage/ui/loading.reel/loading.js b/node_modules/montage/ui/loading.reel/loading.js new file mode 100755 index 00000000..f0574d72 --- /dev/null +++ b/node_modules/montage/ui/loading.reel/loading.js @@ -0,0 +1,61 @@ +/* + 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.reel" + @requires montage/core/core + @requires montage/ui/component +*/ +var Montage = require("montage").Montage, + Component = require("ui/component").Component; +/** + @class module:montage/ui/loading.Loading + @extends module:montage/ui/component.Component + */ + +var Loading = exports.Loading = Montage.create(Component,/** @lends module:"montage/ui/loading.reel".Loading# */ { +/** + Description TODO + @private +*/ + _loading: { + value: null + }, +/** + Description TODO + @type {Function} + @default null + */ + loading: { + get: function() { + return this._loading; + }, + set: function(isloading) { + if (this._loading !== isloading) { + this._loading = isloading; + this.needsDraw = true; + } + } + }, +/** + Description TODO + @function + */ + draw: { + value: function() { + var classList = this.element.classList, exists = classList.contains("animate"); + if (this.loading) { + if (!exists) { + classList.add("animate"); + } + } else { + if (exists) { + classList.remove("animate"); + } + + } + } + } +}); -- cgit v1.2.3