Este site funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Acessar
aagez
/
nexus-timers
Observar
1
Favorito
1
Fork
0
Código
Issues
4
Pull requests
0
Versões
0
Wiki
Atividade
Ver código fonte
🐛
: fix timer drop to negative if reset time is 0
master
Adrien
4 anos atrás
pai
04637fdd91
commit
a7f468888b
1 arquivos alterados
com
2 adições
e
1 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+2
-1
src/components/Battleground/Timer.vue
+ 2
- 1
src/components/Battleground/Timer.vue
Ver arquivo
@@ -18,9 +18,10 @@
startTimer: function () {
this.stopTimer()
this.timerIntervalId = setInterval(() => {
this.currentTime--
if (this.currentTime === 0) {
this.stopTimer()
} else {
this.currentTime--
}
}, 1000)
},
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar