mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
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>