有没有办法在触摸设备上收听著名的 angular的fa-scroll-view滚动事件?
例如,就在著名的角度文档中:
<fa-app ng-controller="ScrollCtrl">
<!-- fa-scroll-view receives all events from $scope.myEventHandler, and decides how to handle them -->
<fa-scroll-view fa-pipe-from="myEventHandler">
<fa-view ng-repeat="view in views">
<fa-modifier fa-size="[undefined, 160]">
<!-- All events on fa-surfaces (click, mousewheel) are piped to $scope.myEventHandler -->
<fa-surface fa-background-color="view.color"
fa-pipe-to="myEventHandler">
</fa-surface>
</fa-modifier>
</fa-view>
</fa-scroll-view>
</fa-app>
我可以听点击myEventHandler
$scope.myEventHandler.on('click', ...)
但不能滚动:
$scope.myEventHandler.on('scroll', ...) // doesn't fire
这可能吗?
谢谢。