aboutsummaryrefslogtreecommitdiff
path: root/js/panels/Timeline
diff options
context:
space:
mode:
Diffstat (limited to 'js/panels/Timeline')
-rw-r--r--js/panels/Timeline/PropertyTrack.reel/PropertyTrack.js40
1 files changed, 40 insertions, 0 deletions
diff --git a/js/panels/Timeline/PropertyTrack.reel/PropertyTrack.js b/js/panels/Timeline/PropertyTrack.reel/PropertyTrack.js
index 12e87636..8c8112ad 100644
--- a/js/panels/Timeline/PropertyTrack.reel/PropertyTrack.js
+++ b/js/panels/Timeline/PropertyTrack.reel/PropertyTrack.js
@@ -192,6 +192,7 @@ var PropertyTrack = exports.PropertyTrack = Montage.create(Component, {
192 this.trackID = this.timelineTrack.trackID; 192 this.trackID = this.timelineTrack.trackID;
193 this.animatedElement = this.timelineTrack.animatedElement; 193 this.animatedElement = this.timelineTrack.animatedElement;
194 this.ninjaStylesContoller = this.application.ninja.stylesController; 194 this.ninjaStylesContoller = this.application.ninja.stylesController;
195 this.eventManager.addEventListener("tlZoomSlider", this, false);
195 } 196 }
196 }, 197 },
197 198
@@ -274,6 +275,45 @@ var PropertyTrack = exports.PropertyTrack = Montage.create(Component, {
274 } 275 }
275 }, 276 },
276 277
278 handleTlZoomSlider: {
279 value: function(event) {
280
281 var currentMilliSecPerPixel , currentMilliSec , clickPos,thingToPush;
282 var i = 0,
283 tweensLength = this.propTweens.length;
284
285 for (i = 0; i < tweensLength; i++) {
286
287 if (i === 0) {
288 // Exception: 0th item does not depend on anything
289 // If 0th tween is draggable, this will need to be fixed.
290 this.propTweens[i].tweenData.spanWidth=0;
291 this.propTweens[i].tweenData.spanPosition=0;
292 this.propTweens[i].tweenData.keyFramePosition=0;
293 this.propTweens[i].tweenData.keyFrameMillisec=0;
294
295 } else {
296 var prevKeyFramePosition = this.propTweens[i - 1].tweenData.keyFramePosition,
297 myObj = {},
298 thing = {};
299
300 currentMilliSecPerPixel = Math.floor(this.application.ninja.timeline.millisecondsOffset / 80);
301 currentMilliSec = this.propTweens[i].tweenData.keyFrameMillisec;
302 clickPos = currentMilliSec / currentMilliSecPerPixel;
303
304 for (thing in this.propTweens[i].tweenData) {
305 myObj[thing] = this.propTweens[i].tweenData[thing];
306 }
307 myObj.spanWidth = clickPos - prevKeyFramePosition;
308 myObj.keyFramePosition = clickPos;
309 myObj.spanPosition = clickPos - (clickPos - prevKeyFramePosition);
310
311 this.propTweens[i].tweenData = myObj;
312 }
313 }
314 }
315 },
316
277 /* End: Event Handlers */ 317 /* End: Event Handlers */
278 318
279 /* Begin: Controllers */ 319 /* Begin: Controllers */