Este sítio funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Iniciar sessão
aagez
/
nexus-timers
Vigiar
1
Marcar como favorito
1
Derivar
0
Código
Questões
4
Pedidos de integração
0
Lançamentos
0
Wiki
Trabalho
Ver a proveniência
🐛
: fix timer drop to negative if reset time is 0
master
Adrien
há 4 anos
ascendente
04637fdd91
cometimento
a7f468888b
1 ficheiros alterados
com
2 adições
e
1 eliminações
Visualização em 2 colunas
Opções das diferenças
Mostrar estatísticas
Descarregar ficheiro patch
Descarregar ficheiro diff
+2
-1
src/components/Battleground/Timer.vue
+ 2
- 1
src/components/Battleground/Timer.vue
Ver ficheiro
@@ -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é-visualizar
Carregando…
Cancelar
Guardar