как можно пофиксить? Флаг добавить какой-то?
https://stackblitz.com/edit/angular-wsqrrw
startPomodoro() { if (!this.timer) { this.setTimer(); this.isActive = true; this.timer = setInterval(this.setTimer.bind(this), this.timerDelay); } } stopPomodoro() { if (this.timer) { clearInterval(this.timer); this.timer = null; } }
Обсуждают сегодня