This website works better with JavaScript.
Почетна
Преглед
Помоћ
Пријавите Се
aagez
/
nexus-timers
Прати
1
Волим
1
Креирај огранак
0
Код
Дискусије
4
Захтеви за спајање
0
Издања
0
Вики
Activity
Преглед изворни кода
🐛
: fix timer drop to negative if reset time is 0
master
Adrien
пре 4 година
родитељ
04637fdd91
комит
a7f468888b
1 измењених фајлова
са
2 додато
и
1 уклоњено
Подељен поглед
Diff Options
Show Stats
Download Patch File
Download Diff File
+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)
},
Write
Preview
Loading…
Откажи
Сачувај