Search code examples
javascriptangularnpmcountdown

NGX countdown timer not counting down accurately for 'leftTime' parameter is greater than 24 hrs


For the below leftTime configuration, if i pass value greater than 864000, timer value is not starting from a value greater than 24 hrs.

<countdown [config]="{leftTime: `864000`}"></countdown>

Ex:

1. If leftTime: `864000`, Timer counts down from `24:00:00`
2. If leftTime: `900000`, Timer counts down from `10:00:00`

What should i do obtain accurate timer start hrs if i pass seconds value greater than 864000 to leftTime parameter?


Solution

  • Try the below statement :-

    <countdown [config]="{ leftTime: 864000, format: 'd:HH:m:s' }"></countdown>