I have a file input
<input type="file" ng-change="action()">
Now in my controller I dont want to do selectors and stuff. so I just have
$scope.action = () ->
...
However, I want a certain behavior such that as long as user selects a File the $scope.action is called, instead of onchange is there onselect event in angular?