aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/ts/timer.ts
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/ts/timer.ts')
-rw-r--r--frontend/ts/timer.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/ts/timer.ts b/frontend/ts/timer.ts
index 013d498..ca51275 100644
--- a/frontend/ts/timer.ts
+++ b/frontend/ts/timer.ts
@@ -25,10 +25,10 @@ export default class Timer {
this.divTimer.innerHTML = secondsElapsed.toString();
}
}
-
+
stop(): void {
this.divTimer.innerHTML = '';
clearInterval(this.interval);
this.interval = undefined;
}
-} \ No newline at end of file
+}