From 7bee50379c1df86bb571e0e8d6c08e24d25231f5 Mon Sep 17 00:00:00 2001 From: Kris Kowal Date: Mon, 9 Jul 2012 16:38:08 -0700 Subject: BSD License --- js/panels/Timeline/EasingMenu.reel/EasingMenu.js | 55 ++++++++++++------------ 1 file changed, 28 insertions(+), 27 deletions(-) (limited to 'js/panels/Timeline/EasingMenu.reel/EasingMenu.js') diff --git a/js/panels/Timeline/EasingMenu.reel/EasingMenu.js b/js/panels/Timeline/EasingMenu.reel/EasingMenu.js index 6d41afb0..32f21d2b 100644 --- a/js/panels/Timeline/EasingMenu.reel/EasingMenu.js +++ b/js/panels/Timeline/EasingMenu.reel/EasingMenu.js @@ -1,24 +1,25 @@ /* -Copyright (c) 2012, Motorola Mobility, Inc +Copyright (c) 2012, Motorola Mobility LLC. All Rights Reserved. -BSD License. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - - Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - Neither the name of Motorola Mobility nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. +* Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of Motorola Mobility LLC nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS @@ -39,7 +40,7 @@ var EasingMenu = exports.EasingMenu = Montage.create(Component, { }, /* Begin: Models */ - + // popup: the initialized component. _popup: { value: null @@ -52,7 +53,7 @@ var EasingMenu = exports.EasingMenu = Montage.create(Component, { this._popup = newVal } }, - + // callingComponent: pointer to the span that called for the menu _callingComponent: { value: null @@ -65,7 +66,7 @@ var EasingMenu = exports.EasingMenu = Montage.create(Component, { this._callingComponent = newVal; } }, - + // anchor: pointer to the anchoring element _anchor: { value: null @@ -78,8 +79,8 @@ var EasingMenu = exports.EasingMenu = Montage.create(Component, { this._anchor = newVal; } }, - - + + _top: { value: null }, @@ -102,7 +103,7 @@ var EasingMenu = exports.EasingMenu = Montage.create(Component, { this._left = newVal; } }, - + // currentChoice: The data attribute of the current choice _currentChoice: { value: "none" @@ -115,13 +116,13 @@ var EasingMenu = exports.EasingMenu = Montage.create(Component, { this._currentChoice = newVal; } }, - + _isShown: { value: false }, - + /* End: Models */ - + /* Begin: Draw Cycle */ willDraw: { value: function() { @@ -129,7 +130,7 @@ var EasingMenu = exports.EasingMenu = Montage.create(Component, { document.addEventListener("scroll", this.handleDocumentScroll.bind(this), false); } }, - + draw: { value: function() { // Update the selection classes. @@ -148,7 +149,7 @@ var EasingMenu = exports.EasingMenu = Montage.create(Component, { } }, /* End Draw Cycle */ - + /* Begin: Controllers */ show: { value: function() { @@ -158,7 +159,7 @@ var EasingMenu = exports.EasingMenu = Montage.create(Component, { this.popup.modal = false; this.popup.content = EasingMenu.create(); } - + // Show the popup this.popup.anchor = this.anchor; var position = {}; @@ -182,10 +183,10 @@ var EasingMenu = exports.EasingMenu = Montage.create(Component, { easingSelected.classList.remove("easing-selected"); } event.target.classList.add("easing-selected"); - + // Set the easing in the span that called us this.callingComponent.easing = event.target.dataset.ninjaEase; - + // Hide the menu. this.popup.hide(); this._isShow = false; @@ -198,7 +199,7 @@ var EasingMenu = exports.EasingMenu = Montage.create(Component, { } } } - + /* End: Controllers */ - + }); -- cgit v1.2.3