File tree 2 files changed +5
-5
lines changed
src/timeline/js/directives
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -104,9 +104,9 @@ App.directive('tlClip', function($timeout){
104
104
var delta_time = delta_x / scope . pixelsPerSecond ;
105
105
106
106
//change the clip end/start based on which side was dragged
107
- new_position = scope . clip . position ;
108
- new_left = scope . clip . start ;
109
- new_right = scope . clip . end ;
107
+ var new_position = scope . clip . position ;
108
+ var new_left = scope . clip . start ;
109
+ var new_right = scope . clip . end ;
110
110
111
111
if ( dragLoc === 'left' ) {
112
112
// changing the start of the clip
Original file line number Diff line number Diff line change @@ -92,8 +92,8 @@ App.directive('tlTransition', function(){
92
92
var delta_time = delta_x / scope . pixelsPerSecond ;
93
93
94
94
//change the transition end/start based on which side was dragged
95
- new_left = scope . transition . position ;
96
- new_right = ( scope . transition . end - scope . transition . start ) ;
95
+ var new_left = scope . transition . position ;
96
+ var new_right = ( scope . transition . end - scope . transition . start ) ;
97
97
98
98
if ( dragLoc === 'left' ) {
99
99
//changing the start of the transition
You can’t perform that action at this time.
0 commit comments