Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
aagez
/
nexus-timers
Seguir
1
Destacar
1
Fork
0
Código
Incidencias
4
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
🐛
: fix timer drop to negative if reset time is 0
master
Adrien
hace 4 años
padre
04637fdd91
commit
a7f468888b
Se han
modificado 1 ficheros
con
2 adiciones
y
1 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+2
-1
src/components/Battleground/Timer.vue
+ 2
- 1
src/components/Battleground/Timer.vue
Ver fichero
@@ -18,9 +18,10 @@
startTimer: function () {
this.stopTimer()
this.timerIntervalId = setInterval(() => {
this.currentTime--
if (this.currentTime === 0) {
this.stopTimer()
} else {
this.currentTime--
}
}, 1000)
},
Escribir
Vista previa
Cargando…
Cancelar
Guardar