diff options
author | Jon Reid | 2012-05-23 15:44:41 -0700 |
---|---|---|
committer | Jon Reid | 2012-05-23 15:44:41 -0700 |
commit | a8dff9f5cb9dec84e6805118d49903710b361275 (patch) | |
tree | ee72f7455aa8fafd6f4a21a1bc899db6a905f27a /js/panels/Timeline/TimelineTrack.reel | |
parent | bae00e5a647b5b6a677857a1bb531273a89e781b (diff) | |
download | ninja-a8dff9f5cb9dec84e6805118d49903710b361275.tar.gz |
Timeline: Easing selection per keyframe.
Diffstat (limited to 'js/panels/Timeline/TimelineTrack.reel')
-rw-r--r-- | js/panels/Timeline/TimelineTrack.reel/TimelineTrack.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/js/panels/Timeline/TimelineTrack.reel/TimelineTrack.js b/js/panels/Timeline/TimelineTrack.reel/TimelineTrack.js index faa3ba77..b195dbd6 100644 --- a/js/panels/Timeline/TimelineTrack.reel/TimelineTrack.js +++ b/js/panels/Timeline/TimelineTrack.reel/TimelineTrack.js | |||
@@ -994,9 +994,10 @@ var TimelineTrack = exports.TimelineTrack = Montage.create(Component, { | |||
994 | this._dragAndDropHelper = event.target.cloneNode(true); | 994 | this._dragAndDropHelper = event.target.cloneNode(true); |
995 | this._dragAndDropHelper.style.opacity = 0.8; | 995 | this._dragAndDropHelper.style.opacity = 0.8; |
996 | this._dragAndDropHelper.style.position = "absolute"; | 996 | this._dragAndDropHelper.style.position = "absolute"; |
997 | this._dragAndDropHelper.style.top = "2px"; | 997 | this._dragAndDropHelper.style.top = "5px"; |
998 | this._dragAndDropHelper.style.left = "0px"; | 998 | this._dragAndDropHelper.style.left = "0px"; |
999 | this._dragAndDropHelper.style.zIndex = 700; | 999 | this._dragAndDropHelper.style.zIndex = 700; |
1000 | this._dragAndDropHelper.classList.add("keyframeSelected"); | ||
1000 | 1001 | ||
1001 | //this._dragAndDropHelper.style.width = window.getComputedStyle(this.container_layers, null).getPropertyValue("width"); | 1002 | //this._dragAndDropHelper.style.width = window.getComputedStyle(this.container_layers, null).getPropertyValue("width"); |
1002 | this._dragAndDropHelper.classList.add("track-dnd-helper"); | 1003 | this._dragAndDropHelper.classList.add("track-dnd-helper"); |