I have a select and a function bound to on change (ng-change), the thing is I want this function to work when the user clicks the already selected element, so they can easily reuse the already selected action.
This is my html (with Slim)
select ng-model="selectedAction" ng-options="action.label for action in Actions" ng-change="chooseAction()"
option ng-selected="users.items.length == 0" value="" Select an Action
Is this possible or I'll have to add a button to make it work?