I've been looking around how to trigger {{action}} with both click and tapEnd to avoid the infamous 300ms onClick delay. The discussion at emberjs/ember.js#586 suggests using:
customEvents: { touchend: "click" }
Unfortunately, that unintentionally triggers buttons at the end of swipes, pinches, scrolls, etc.
So the question is, is there a way to detect an un-handled tapEnd event and re-trigger it as a click? Would this be a good feature to add to ember-touch?