diff options
-rw-r--r-- | js/panels/Timeline/TimelineTrack.reel/TimelineTrack.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/js/panels/Timeline/TimelineTrack.reel/TimelineTrack.js b/js/panels/Timeline/TimelineTrack.reel/TimelineTrack.js index 36b2fe08..5e9868f0 100644 --- a/js/panels/Timeline/TimelineTrack.reel/TimelineTrack.js +++ b/js/panels/Timeline/TimelineTrack.reel/TimelineTrack.js | |||
@@ -381,8 +381,6 @@ var TimelineTrack = exports.TimelineTrack = Montage.create(Component, { | |||
381 | 381 | ||
382 | setData:{ | 382 | setData:{ |
383 | value:function(){ | 383 | value:function(){ |
384 | console.log("setting track data"); | ||
385 | |||
386 | this.bypassAnimation = this.trackData.bypassAnimation; | 384 | this.bypassAnimation = this.trackData.bypassAnimation; |
387 | this.trackID = this.trackData.layerID; | 385 | this.trackID = this.trackData.layerID; |
388 | this.tweens = this.trackData.tweens; | 386 | this.tweens = this.trackData.tweens; |
@@ -624,7 +622,6 @@ var TimelineTrack = exports.TimelineTrack = Montage.create(Component, { | |||
624 | updateKeyframeRule:{ | 622 | updateKeyframeRule:{ |
625 | value:function () { | 623 | value:function () { |
626 | // delete the current rule | 624 | // delete the current rule |
627 | console.log(this.currentKeyframeRule); | ||
628 | this.ninjaStylesContoller.deleteRule(this.currentKeyframeRule); | 625 | this.ninjaStylesContoller.deleteRule(this.currentKeyframeRule); |
629 | 626 | ||
630 | // build the new keyframe string | 627 | // build the new keyframe string |
@@ -643,7 +640,6 @@ var TimelineTrack = exports.TimelineTrack = Montage.create(Component, { | |||
643 | keyframeString += keyframePropertyString; | 640 | keyframeString += keyframePropertyString; |
644 | } | 641 | } |
645 | keyframeString += " }"; | 642 | keyframeString += " }"; |
646 | console.log(keyframeString); | ||
647 | // set the keyframe string as the new rule | 643 | // set the keyframe string as the new rule |
648 | this.currentKeyframeRule = this.ninjaStylesContoller.addRule(keyframeString); | 644 | this.currentKeyframeRule = this.ninjaStylesContoller.addRule(keyframeString); |
649 | this.application.ninja.documentController.activeDocument.needsSave = true; | 645 | this.application.ninja.documentController.activeDocument.needsSave = true; |