diff options
author | Jonathan Duran | 2012-03-26 11:52:51 -0700 |
---|---|---|
committer | Jonathan Duran | 2012-03-26 11:52:51 -0700 |
commit | 6902b20474da22029d84d92a5a6bfa129a30d92e (patch) | |
tree | e8ea055eb30edc56665dcf9050b2188ed78299e7 /js/panels/Timeline | |
parent | 5a977f2ac151766530c129e26edc39055d11c07f (diff) | |
download | ninja-6902b20474da22029d84d92a5a6bfa129a30d92e.tar.gz |
Remove console logs
Signed-off-by: Jonathan Duran <jduran@motorola.com>
Diffstat (limited to 'js/panels/Timeline')
-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; |