diff options
author | Kruti Shah | 2012-07-12 14:21:31 -0700 |
---|---|---|
committer | Kruti Shah | 2012-07-12 14:21:31 -0700 |
commit | ec15c5ed111f8d2608941c2ce86fb4b6f68117a0 (patch) | |
tree | 44f99e948b49ac59b70d6f0b04819a287dc9e54b /js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js | |
parent | 4e9a00c3f4318d34e7be63f320d58b082ef7fda2 (diff) | |
download | ninja-ec15c5ed111f8d2608941c2ce86fb4b6f68117a0.tar.gz |
Zooming the tweens
Signed-off-by: Kruti Shah <kruti.shah@motorola.com>
Diffstat (limited to 'js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js')
-rw-r--r-- | js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js b/js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js index 93b4d67e..88b37563 100644 --- a/js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js +++ b/js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js | |||
@@ -509,6 +509,10 @@ var TimelinePanel = exports.TimelinePanel = Montage.create(Component, { | |||
509 | }, | 509 | }, |
510 | set:function (newVal) { | 510 | set:function (newVal) { |
511 | if (newVal !== this._millisecondsOffset) { | 511 | if (newVal !== this._millisecondsOffset) { |
512 | |||
513 | var tempValue = (1/newVal) * 1000000; | ||
514 | newVal = tempValue; | ||
515 | |||
512 | this._millisecondsOffset= newVal; | 516 | this._millisecondsOffset= newVal; |
513 | this.drawTimeMarkers(); | 517 | this.drawTimeMarkers(); |
514 | NJevent('tlZoomSlider',this); | 518 | NJevent('tlZoomSlider',this); |