Skip to content

Commit d997079

Browse files
committed
codacy comparison
1 parent 0dce983 commit d997079

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/timeline/js/directives/ruler.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ App.directive("tlRuler", function ($timeout) {
222222
let tickSpan = $('<span style="left:'+pos+'px;"></span>');
223223
tickSpan.addClass("tick_mark");
224224

225-
if ((frame) % (fpt * 2) == 0) {
225+
if ((frame) % (fpt * 2) === 0) {
226226
// Alternating long marks with times marked
227227
let timeSpan = $('<span style="left:'+pos+'px;"></span>');
228228
timeSpan.addClass("ruler_time");

0 commit comments

Comments
 (0)