No its not. You can do media select on if the primary input device is a pointer device (and, further, if it has high accuracy) and then filter on that.
I used it to select which layout to show in the past.
If you want to listen to input on touch only then you can do that and call preventDefault on the event so that the browser does not then cause a click event. Or you can just save yourself the trouble and write a click handler.
I used it to select which layout to show in the past.
If you want to listen to input on touch only then you can do that and call preventDefault on the event so that the browser does not then cause a click event. Or you can just save yourself the trouble and write a click handler.