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/Span.reel/Span.js | 59 ++++++++++++++++++------------------ 1 file changed, 30 insertions(+), 29 deletions(-) (limited to 'js/panels/Timeline/Span.reel/Span.js') diff --git a/js/panels/Timeline/Span.reel/Span.js b/js/panels/Timeline/Span.reel/Span.js index 0d013fe5..8f2c8e21 100644 --- a/js/panels/Timeline/Span.reel/Span.js +++ b/js/panels/Timeline/Span.reel/Span.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 @@ -51,7 +52,7 @@ var Span = exports.Span = Montage.create(Component, { this.needsDraw = true; } }, - + _isHighlighted: { value: false }, @@ -66,7 +67,7 @@ var Span = exports.Span = Montage.create(Component, { } } }, - + _areChoicesVisible: { value: false }, @@ -81,7 +82,7 @@ var Span = exports.Span = Montage.create(Component, { } } }, - + _easing: { value: "none" }, @@ -102,14 +103,14 @@ var Span = exports.Span = Montage.create(Component, { } } }, - + // BEGIN: draw cycle prepareForDraw: { value: function() { this.init(); } }, - + draw:{ value: function(){ this.element.style.width = this.spanWidth + "px"; @@ -132,14 +133,14 @@ var Span = exports.Span = Montage.create(Component, { this.container_easing.setAttribute("style", ""); this.easing_choice.setAttribute("style", ""); } - + // Highlight the span? if (this.isHighlighted === true) { this.element.classList.add("spanHighlight"); } else { this.element.classList.remove("spanHighlight"); } - + /* // Hide or show the choices menu? if (this.areChoicesVisible === true) { @@ -148,12 +149,12 @@ var Span = exports.Span = Montage.create(Component, { this.easing_choices.style.display = "none"; } */ - + // Change easing? if (this.easing_choice.innerText !== this.easing) { this.easing_choice.innerText = this.easing; } - + } }, @@ -165,7 +166,7 @@ var Span = exports.Span = Montage.create(Component, { } }, - + highlightSpan:{ value: function(){ // Class add/remove should only be done in draw cycle. @@ -173,7 +174,7 @@ var Span = exports.Span = Montage.create(Component, { this.isHighlighted = true; } }, - + handleEasingChoiceClick: { value: function(event) { event.stopPropagation(); @@ -191,7 +192,7 @@ var Span = exports.Span = Montage.create(Component, { do { objReturn.left += obj.offsetLeft; objReturn.top += obj.offsetTop; - + } while (obj = obj.offsetParent); } return objReturn; @@ -209,21 +210,21 @@ var Span = exports.Span = Montage.create(Component, { // Remove the pointer to ourselves //this.application.ninja.timeline.currentOpenSpanMenu = false; - + // Un-highlight the old choice and highlight the new choice this.application.ninja.timeline.easingMenu.popup.contentEl.querySelector(".easing-selected").classList.remove("easing-selected"); event.target.classList.add("easing-selected"); - - // Set the easing + + // Set the easing this.easing = event.target.dataset.ninjaEase; this.parentComponent.easing = this.easing; this.parentComponent.tweenData.easing = this.easing; - + // Unbind the event handler this.application.ninja.timeline.easingMenu.popup.contentEl.removeEventListener("click"); - + // Hide the menu. - this.hideEasingMenu(); + this.hideEasingMenu(); } }, hideEasingMenu: { -- cgit v1.2.3