I am using this https://github.com/prajwalkman/angular-slider and I am trying to bind the slider events onStart and onMove that seem to be built in to the directive.
The HTML for the module is
<slider floor="0" ceiling="100" step="1" precision="1" ng-model="playhead" id="seekBar"></slider>
and I want to be able to use the events in my controller. I tried:
seekBar.addEventListener('onMove', function(event){...});
but didn't have any luck with that. Can anyone explain how I am supposed to use these events from my controller?

scope.$emit('onMove');and then a$scope.$on('onMove', function(event){log($scope.playhead)});and it shows me the value when I slide