Browse Source

fix wrong indentation

codeClimate
Nikola Gluhovic 8 years ago
committed by GitHub
parent
commit
9ec77c622b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/timeline/DateUtil.js

+ 1
- 1
lib/timeline/DateUtil.js View File

@ -378,7 +378,7 @@ exports.getHiddenDurationBeforeStart = function (hiddenDates, start, end) {
var startDate = hiddenDates[i].start;
var endDate = hiddenDates[i].end;
if (startDate >= start && endDate <= end) {
if (startDate >= start && endDate <= end) {
duration += endDate - startDate;
}
}

Loading…
Cancel
Save