This is currently not supported. But there is an open issue about this, see # 569 in the GitHub tracker issue. You must add a comment.
A suggested solution to the GitHub problem is to use a custom view, something like this:
Ember.View.extend({
click: function(evt) {
this.fire('itsClicked', evt);
},
touchMove: function() {
this.fire('itsClicked', evt);
},
itsClicked: function(e) {
...
}
})
source
share