Tämä sivusto toimii paremmin JavaScriptillä.
Etusivu
Tutki
Apua
Kirjaudu sisään
aagez
/
nexus-timers
Tarkkaile
1
Äänestä
1
Fork
0
Koodi
Ongelmat
4
Pull-pyynnöt
0
Julkaisut
0
Wiki
Toiminta
Selaa lähdekoodia
🐛
: fix timer drop to negative if reset time is 0
master
Adrien
4 vuotta sitten
vanhempi
04637fdd91
commit
a7f468888b
1 muutettua tiedostoa
jossa
2 lisäystä
ja
1 poistoa
Jaettu näkymä
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
src/components/Battleground/Timer.vue
+ 2
- 1
src/components/Battleground/Timer.vue
Näytä tiedosto
@@ -18,9 +18,10 @@
startTimer: function () {
this.stopTimer()
this.timerIntervalId = setInterval(() => {
this.currentTime--
if (this.currentTime === 0) {
this.stopTimer()
} else {
this.currentTime--
}
}, 1000)
},
Kirjoita
Esikatselu
Ladataan…
Peruuta
Tallenna