Reputation: 370
This is my current attempt, both do not work at the same time
<button ng-click="actionType=false" ng-click="mapValues()">Back</button>
Upvotes: 0
Views: 33
Reputation: 26308
Just chain them:
<button ng-click="mapValues(); actionType=false;">Back</button>
Upvotes: 3