Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ionRadio): fix ng-change being reported before model changes
Closes #1741 BREAKING CHANGE: ion-radio no longer has an isolate scope. This will break your radio only if you were relying upon the radio having an isolate scope: if you were referencing `$parent.value` as the ng-disabled attribute, for example. Change your code from this: <ion-radio ng-disabled="{{$parent.isDisabled}}"></ion-radio> To this: <ion-radio ng-disabled="{{isDisabled}}"></ion-radio>
- Loading branch information