Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
aagez
/
nexus-timers
Segui
1
Vota
1
Forka
0
Codice
Problemi
4
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
🐛
: fix timer drop to negative if reset time is 0
master
Adrien
4 anni fa
parent
04637fdd91
commit
a7f468888b
1 ha cambiato i file
con
2 aggiunte
e
1 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+2
-1
src/components/Battleground/Timer.vue
+ 2
- 1
src/components/Battleground/Timer.vue
Vedi File
@@ -18,9 +18,10 @@
startTimer: function () {
this.stopTimer()
this.timerIntervalId = setInterval(() => {
this.currentTime--
if (this.currentTime === 0) {
this.stopTimer()
} else {
this.currentTime--
}
}, 1000)
},
Scrivi
Anteprima
Caricamento…
Annulla
Salva