diff options
| -rw-r--r-- | timers.go | 1 | ||||
| -rw-r--r-- | timers.ts | 3 |
2 files changed, 1 insertions, 3 deletions
@@ -31,7 +31,6 @@ func InitTimers() { Duration: msg.TimerStartDuration, Cleared: false, } - // If this parameter is less than 10, a value of 10 is used if t.Duration < 10 { t.Duration = 10 } @@ -78,7 +78,7 @@ export function setInterval( // tslint:disable-next-line:no-any ...args: any[] ): number { - return setTimer(cb, duration, true, args); + return setTimer(cb, repeat, true, args); } export function clearTimer(id: number) { @@ -87,4 +87,3 @@ export function clearTimer(id: number) { timerClearId: id }); } - |
