How can I bind scroll event on element in AngularJS directive ?
I bind scroll on $window, but now i need to change it to this class ".body-wrapper" (angular.element(document.queryselector(.body-wrapper)) doesn't work) .
Any ideas ?
angular.element($window).bind("scroll", function () {
...
})