i\'m trying to do a form with validations using angularjs and so far i did a good job. But when i commit my reset button all the fields reset except for the error messages i
I went with...
$scope.form.$setPristine(); $scope.form.$error = {};
Feels hacky... but a lot about angular does.
Besides... this was the only thing that worked.