@@ -124,7 +124,6 @@ App.controller("TimelineCtrl", function ($scope) {
124
124
125
125
// Update GUI with position (so the preview can be updated)
126
126
if ( $scope . Qt ) {
127
- /*eslint new-cap: [2, {"capIsNewExceptions": ["timeline.PlayheadMoved"]}]*/
128
127
timeline . PlayheadMoved ( frame ) ;
129
128
}
130
129
} ;
@@ -140,7 +139,6 @@ App.controller("TimelineCtrl", function ($scope) {
140
139
141
140
// Update GUI with position (so the preview can be updated)
142
141
if ( $scope . Qt ) {
143
- /*eslint new-cap: [2, {"capIsNewExceptions": ["timeline.PreviewClipFrame"]}]*/
144
142
timeline . PreviewClipFrame ( clip_id , frame ) ;
145
143
}
146
144
} ;
@@ -517,7 +515,6 @@ App.controller("TimelineCtrl", function ($scope) {
517
515
if ( id !== "" && $scope . enable_razor ) {
518
516
if ( $scope . Qt ) {
519
517
var cursor_seconds = $scope . getJavaScriptPosition ( event . clientX ) ;
520
- /*eslint new-cap: [2, {"capIsNewExceptions": ["timeline.RazorSliceAtCursor"]}]*/
521
518
timeline . RazorSliceAtCursor ( id , "" , cursor_seconds ) ;
522
519
}
523
520
// Don't actually select clip
@@ -636,7 +633,6 @@ App.controller("TimelineCtrl", function ($scope) {
636
633
if ( $scope . Qt && ! $scope . enable_razor ) {
637
634
timeline . qt_log ( "$scope.showClipMenu" ) ;
638
635
$scope . selectClip ( clip_id , false , event ) ;
639
- /*eslint new-cap: [2, {"capIsNewExceptions": ["timeline.ShowClipMenu"]}]*/
640
636
timeline . ShowClipMenu ( clip_id ) ;
641
637
}
642
638
} ;
@@ -645,7 +641,6 @@ App.controller("TimelineCtrl", function ($scope) {
645
641
$scope . showEffectMenu = function ( effect_id ) {
646
642
if ( $scope . Qt && ! $scope . enable_razor ) {
647
643
timeline . qt_log ( "$scope.showEffectMenu" ) ;
648
- /*eslint new-cap: [2, {"capIsNewExceptions": ["timeline.ShowEffectMenu"]}]*/
649
644
timeline . ShowEffectMenu ( effect_id ) ;
650
645
}
651
646
} ;
@@ -655,7 +650,6 @@ App.controller("TimelineCtrl", function ($scope) {
655
650
if ( $scope . Qt && ! $scope . enable_razor ) {
656
651
timeline . qt_log ( "$scope.showTransitionMenu" ) ;
657
652
$scope . selectTransition ( tran_id , false , event ) ;
658
- /*eslint new-cap: [2, {"capIsNewExceptions": ["timeline.ShowTransitionMenu"]}]*/
659
653
timeline . ShowTransitionMenu ( tran_id ) ;
660
654
}
661
655
} ;
@@ -664,7 +658,6 @@ App.controller("TimelineCtrl", function ($scope) {
664
658
$scope . showTrackMenu = function ( layer_id ) {
665
659
if ( $scope . Qt && ! $scope . enable_razor ) {
666
660
timeline . qt_log ( "$scope.showTrackMenu" ) ;
667
- /*eslint new-cap: [2, {"capIsNewExceptions": ["timeline.ShowTrackMenu"]}]*/
668
661
timeline . ShowTrackMenu ( layer_id ) ;
669
662
}
670
663
} ;
@@ -673,7 +666,6 @@ App.controller("TimelineCtrl", function ($scope) {
673
666
$scope . showMarkerMenu = function ( marker_id ) {
674
667
if ( $scope . Qt && ! $scope . enable_razor ) {
675
668
timeline . qt_log ( "$scope.showMarkerMenu" ) ;
676
- /*eslint new-cap: [2, {"capIsNewExceptions": ["timeline.ShowMarkerMenu"]}]*/
677
669
timeline . ShowMarkerMenu ( marker_id ) ;
678
670
}
679
671
} ;
@@ -682,15 +674,13 @@ App.controller("TimelineCtrl", function ($scope) {
682
674
$scope . showPlayheadMenu = function ( position ) {
683
675
if ( $scope . Qt && ! $scope . enable_razor ) {
684
676
timeline . qt_log ( "$scope.showPlayheadMenu" ) ;
685
- /*eslint new-cap: [2, {"capIsNewExceptions": ["timeline.ShowPlayheadMenu"]}]*/
686
677
timeline . ShowPlayheadMenu ( position ) ;
687
678
}
688
679
} ;
689
680
690
681
// Show timeline context menu
691
682
$scope . showTimelineMenu = function ( e , layer_number ) {
692
683
if ( $scope . Qt && ! $scope . enable_razor ) {
693
- /*eslint new-cap: [2, {"capIsNewExceptions": ["timeline.ShowTimelineMenu"]}]*/
694
684
timeline . ShowTimelineMenu ( $scope . getJavaScriptPosition ( e . pageX ) , layer_number ) ;
695
685
}
696
686
} ;
0 commit comments