We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dce983 commit d997079Copy full SHA for d997079
src/timeline/js/directives/ruler.js
@@ -222,7 +222,7 @@ App.directive("tlRuler", function ($timeout) {
222
let tickSpan = $('<span style="left:'+pos+'px;"></span>');
223
tickSpan.addClass("tick_mark");
224
225
- if ((frame) % (fpt * 2) == 0) {
+ if ((frame) % (fpt * 2) === 0) {
226
// Alternating long marks with times marked
227
let timeSpan = $('<span style="left:'+pos+'px;"></span>');
228
timeSpan.addClass("ruler_time");
0 commit comments