-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ionCheckbox): make ng-checked and ng-change work
Closes #1349. Closes #1361 BREAKING CHANGE: ion-checkbox no longer has an isolate scope. This will break your checkbox only if you were relying upon the checkbox having an isolate scope: if you were referencing `$parent.value` as the ng-disabled attribute, for example. Change your code from this: ```html <ion-checkbox ng-disabled="{{$parent.isDisabled}}"></ion-checkbox> ``` To this: ```html <ion-checkbox ng-disabled="{{isDisabled}}"></ion-checkbox> ```
- Loading branch information
Showing
3 changed files
with
41 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters