Files
ionic-framework/test/html
Andrew Joslin a006d89612 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>
```
2014-05-13 07:19:02 -06:00
..
2014-04-14 10:47:27 -06:00
2014-04-14 10:47:27 -06:00
2014-04-14 10:47:27 -06:00
2014-04-29 17:11:38 -05:00
2014-04-14 10:47:27 -06:00
2014-05-03 22:30:21 -05:00