Commit 17a60eab71b8b67c26e0751726a1abe97602c21b

Authored by Benjamin Rodriguez
1 parent 0fe454ec4c
Exists in develop

cambio texto en mensaje final y alargo timeout

src/app/modules/mensaje-final/mensaje-final.component.html
... ... @@ -24,7 +24,7 @@
24 24 (contextmenu)="false"
25 25 class="img-in-top px-4 bg-white"
26 26 src="assets/img/ticket.svg">
27   - <p class="h6 mb-2"><small>PRESENTÁ EL TICKET EN CAJA Y AGUARDÁ TU PEDIDO</small></p>
  27 + <p class="h6 mb-2"><small>NO TE VAYAS SIN TU TICKET.<br>PRESENTALO AL RETIRAR TU PEDIDO.</small></p>
28 28 <p class="h2 text-primary">Número de pedido {{articuloService.idComanda}}</p>
29 29 </div>
30 30 </div>
src/app/modules/mensaje-final/mensaje-final.component.ts
... ... @@ -18,7 +18,7 @@ export class MensajeFinalComponent implements OnInit {
18 18 ngOnInit() {
19 19 this.timer = setTimeout(() => {
20 20 this.goToSplash();
21   - }, 10000);
  21 + }, 15000);
22 22 this.mediaPantalla();
23 23 }
24 24