aboutsummaryrefslogtreecommitdiff
path: root/js/panels/Timeline/Style.reel
diff options
context:
space:
mode:
authorKruti Shah2012-06-12 13:18:02 -0700
committerKruti Shah2012-06-12 13:18:02 -0700
commit7887aafbff794e9c5f918c667e73a8386c38cf02 (patch)
treee4d070fe1e67fea38cc0343eda297572da717efa /js/panels/Timeline/Style.reel
parentd648c842905c7c53e0f89b943982493d2b79f56e (diff)
downloadninja-7887aafbff794e9c5f918c667e73a8386c38cf02.tar.gz
Clean up
Signed-off-by: Kruti Shah <kruti.shah@motorola.com>
Diffstat (limited to 'js/panels/Timeline/Style.reel')
-rw-r--r--js/panels/Timeline/Style.reel/Style.js7
1 files changed, 2 insertions, 5 deletions
diff --git a/js/panels/Timeline/Style.reel/Style.js b/js/panels/Timeline/Style.reel/Style.js
index bb10f30f..03d674a5 100644
--- a/js/panels/Timeline/Style.reel/Style.js
+++ b/js/panels/Timeline/Style.reel/Style.js
@@ -705,19 +705,17 @@ var LayerStyle = exports.LayerStyle = Montage.create(Component, {
705 705
706 handleFillColorChange: { 706 handleFillColorChange: {
707 value: function (event) { 707 value: function (event) {
708 708 if(this.application.ninja.timeline.selectedStyle === "color" ||this.application.ninja.timeline.selectedStyle === this.editorProperty){
709 if(this.application.ninja.timeline.selectedStyle === "color" ||this.application.ninja.timeline.selectedStyle === this.editorProperty){
710 var fillColorObject={}; 709 var fillColorObject={};
711 fillColorObject.color=event._event.color; 710 fillColorObject.color=event._event.color;
712 fillColorObject.mode=event._event.colorMode; 711 fillColorObject.mode=event._event.colorMode;
713 ElementsMediator.setColor([this.parentComponent.parentComponent.parentComponent.parentComponent.layerData.stageElement], fillColorObject, this._isFill, "Change", "timeline",null,this._borderSide) 712 ElementsMediator.setColor([this.parentComponent.parentComponent.parentComponent.parentComponent.layerData.stageElement], fillColorObject, this._isFill, "Change", "timeline",null,this._borderSide)
714 } 713 }
715 } 714 }
716 }, 715 },
717 716
718 handleHottextChange:{ 717 handleHottextChange:{
719 value:function(event){ 718 value:function(event){
720 console.log(this.application.ninja.timeline.selectedStyle)
721 if(this.application.ninja.timeline.selectedStyle === this.editorProperty){ 719 if(this.application.ninja.timeline.selectedStyle === this.editorProperty){
722 this.application.ninja.elementMediator.setProperty([this.parentComponent.parentComponent.parentComponent.parentComponent.layerData.stageElement], this.editorProperty, [this.editorValue + event.target._units] , "Change", "timeline"); 720 this.application.ninja.elementMediator.setProperty([this.parentComponent.parentComponent.parentComponent.parentComponent.layerData.stageElement], this.editorProperty, [this.editorValue + event.target._units] , "Change", "timeline");
723 } 721 }
@@ -726,7 +724,6 @@ var LayerStyle = exports.LayerStyle = Montage.create(Component, {
726 724
727 handleHottextChanging:{ 725 handleHottextChanging:{
728 value:function(event){ 726 value:function(event){
729 console.log(this.application.ninja.timeline.selectedStyle)
730 if(this.application.ninja.timeline.selectedStyle === this.editorProperty){ 727 if(this.application.ninja.timeline.selectedStyle === this.editorProperty){
731 this.application.ninja.elementMediator.setProperty([this.parentComponent.parentComponent.parentComponent.parentComponent.layerData.stageElement], this.editorProperty, [this.editorValue + event.target._units] , "Changing", "timeline"); 728 this.application.ninja.elementMediator.setProperty([this.parentComponent.parentComponent.parentComponent.parentComponent.layerData.stageElement], this.editorProperty, [this.editorValue + event.target._units] , "Changing", "timeline");
732 } 729 }