デスクトップとモバイルの両方の操作で、とイベントEmber.View
の両方を処理する があります。click
touchEnd
残念ながら、touchEnd
スクロール時にも発生しますが、これは意図したものではありません。クリックとタップを処理する方法はありますが、スクロール イベントは回避できますか?
Ember.View.extend({
click: function() {
// not handled in a mobile browser
},
touchEnd: function() {
// handled in a mobile browser, but unfortunately also on scroll
}
});