When I use checked="checked" ng-model prevents the radio button from being selected by default. Does anyone know what could be causing this?
<input type="radio" name="unitMiles" checked="checked" id="unitMiles" value="Miles" ng-model="unit" ng-change='nextActivityStep(3)'>
You should be using the ngChecked
directive that comes with Angular.