Skip to content

Commit c533b1a

Browse files
committed
Adding more eslint comments
1 parent 1127f11 commit c533b1a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/timeline/js/controllers.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929

3030
// Initialize the main controller module
31-
/*global App, timeline */
31+
/*global App, timeline, bounding_box, setBoundingBox, moveBoundingBox*/
3232
App.controller("TimelineCtrl", function ($scope) {
3333

3434
// DEMO DATA (used when debugging outside of Qt using Chrome)

src/timeline/js/directives/transition.js

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ App.directive("tlTransition", function () {
6868
var vert_scroll_offset = $("#scrolling_tracks").scrollTop();
6969
var track_top = (parseInt(element.position().top, 10) + parseInt(vert_scroll_offset, 10));
7070
var track_bottom = (parseInt(element.position().top, 10) + parseInt(element.height(), 10) + parseInt(vert_scroll_offset, 10));
71+
/*global hasLockedTrack*/
7172
if (hasLockedTrack(scope, track_top, track_bottom)) {
7273
resize_disabled = true;
7374
}

0 commit comments

Comments
 (0)