Currently I have a image file. By default, if I long tap on that image file, an option of "save image /copy" is shown. And I personally add a doubletap event on it.
The problem is: I need a double tap event but not long tap event
What I found on the internet is one can simply add a pointer event : none
in the img style to disable all mouse event , however, what if I just want to disable the long tap event?
From doc,
pointer-events: auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit
But are there any parmeter is suitable for my case? Thanks