From 69de5f27d3411d0817c5b46f538f40e16ca967a1 Mon Sep 17 00:00:00 2001 From: Jose Antonio Marquez Date: Tue, 13 Mar 2012 15:31:52 -0700 Subject: Deleting temp folder --- js/panels/_color/colorpanel.js | 53 ------------------------------------------ 1 file changed, 53 deletions(-) delete mode 100755 js/panels/_color/colorpanel.js (limited to 'js/panels/_color/colorpanel.js') diff --git a/js/panels/_color/colorpanel.js b/js/panels/_color/colorpanel.js deleted file mode 100755 index 3a603e98..00000000 --- a/js/panels/_color/colorpanel.js +++ /dev/null @@ -1,53 +0,0 @@ -/* -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, - PanelBase = require("js/panels/panelbase").PanelBase; -//////////////////////////////////////////////////////////////////////// -//Exporting as ColorPanel -exports.ColorPanel = Montage.create(PanelBase, { - //////////////////////////////////////////////////////////////////// - //Panel Configuration - panelName: {value: "Color", writable: true, enumerable: true, configurable: true}, - panelHeaderID: {value: "colorPanelHeader", writable: true, enumerable: true, configurable: true}, - disclosureIconID: {value: "colorPanelDisclosureIcon", writable: true, enumerable: true, configurable: true}, - closeButtonID: {value: "colorPanelCloseButton", writable: true, enumerable: true, configurable: true}, - panelContentID: {value: "colorPanelContent", writable: true, enumerable: true, configurable: true}, - //////////////////////////////////////////////////////////////////// - //Creating panel from base view class - init: { - enumerable: true, - value: function() { - //Initializing Wrapper - this.minHeight = 200; - this.maxHeight = 200; - this.contentHeight = 200; - this.isStatic = true; - this.scrollable = false; - //Getting view from base in controller - this.content = this.application.ninja.colorController.colorView = this.application.ninja.colorController.colorPanelBase.create(); - //Checking for first draw to apply default colors - this.content.addEventListener('firstDraw', this, false); - - - //////////////////////////////////////////////////////////// - //////////////////////////////////////////////////////////// - //TODO: Remove and add via toolbar draw loop - - //////////////////////////////////////////////////////////// - //////////////////////////////////////////////////////////// - - - } - }, - //////////////////////////////////////////////////////////////////// - //Applying default colors only on first draw - - //////////////////////////////////////////////////////////////////// - //////////////////////////////////////////////////////////////////// -}); \ No newline at end of file -- cgit v1.2.3