Пожалуйста, включите JavaScript.
Главная
Обзор
Помощь
Вход
aagez
/
nexus-timers
Следить
1
В избранное
1
Форкнуть
0
Код
Задачи
4
Pull Request'ы
0
Релизы
0
Вики
Активность
Просмотр исходного кода
🐛
: fix timer drop to negative if reset time is 0
master
Adrien
4 лет назад
Родитель
04637fdd91
Сommit
a7f468888b
1 измененных файлов
:
2 добавлений
и
1 удалений
Разделённый вид
Опции Diff
Показать статистику
Скачать Patch файл
Скачать Diff файл
+2
-1
src/components/Battleground/Timer.vue
+ 2
- 1
src/components/Battleground/Timer.vue
Просмотреть файл
@@ -18,9 +18,10 @@
startTimer: function () {
this.stopTimer()
this.timerIntervalId = setInterval(() => {
this.currentTime--
if (this.currentTime === 0) {
this.stopTimer()
} else {
this.currentTime--
}
}, 1000)
},
Редактирование
Предпросмотр
Загрузка…
Отмена
Сохранить