It's just a small issue, but I've looked into other posts but none of the solutions work (at least for me).
I want to change the title that appears on hover. I've tried using pointer-events: none;
, but it stops the onDelete function
<ion-icon name="trash-outline" (click)="onDelete(message)" ></ion-icon>
CodePudding user response:
As per the Ionic Forum post do the following:
<span title="whatever" (click)="onDelete(message)" >
<ion-icon name="trash-outline" ></ion-icon>
</span>
and in your css
.del {
pointer-events:none
}