Changed touchStart by click
This commit is contained in:
@@ -23,7 +23,7 @@
|
||||
fill="clear"
|
||||
class="m-0 p-0 min-h-0 text-[11px] font-black bg-black text-white rounded-3xl"
|
||||
style="--padding-top: 4px; --padding-bottom: 4px;"
|
||||
(touchstart)="setOpen(true)">
|
||||
(click)="setOpen(true)">
|
||||
{{ action() }}
|
||||
</ion-button>
|
||||
</div>
|
||||
@@ -36,7 +36,7 @@
|
||||
<ion-toolbar>
|
||||
<ion-title>Défi Quotidien</ion-title>
|
||||
<ion-buttons slot="start" style="--ion-color-primary: #0054E9;">
|
||||
<ion-back-button default-href="" (touchstart)="setOpen(false)"></ion-back-button>
|
||||
<ion-back-button default-href="" (click)="setOpen(false)"></ion-back-button>
|
||||
</ion-buttons>
|
||||
</ion-toolbar>
|
||||
</ion-header>
|
||||
@@ -62,7 +62,7 @@
|
||||
<app-proof-form #proofForm></app-proof-form>
|
||||
</div>
|
||||
|
||||
<ion-button expand="block" (touchstart)="sendProof(data().id)">Soumettre ma preuve</ion-button>
|
||||
<ion-button expand="block" (click)="sendProof(data().id)">Soumettre ma preuve</ion-button>
|
||||
|
||||
</ion-content>
|
||||
</ng-template>
|
||||
|
||||
Reference in New Issue
Block a user