Files
ionic-framework/js/angular/directive
Andrew 537b29d0bb fix(toggle): fix ngChange being reported before model changes
Closes #1349, #1741

BREAKING CHANGE:

ion-toggle no longer has an isolate scope.
This will break your toggle only if you were relying upon the toggle
having an isolate scope: if you were referencing `$parent.value` as
the ng-disabled attribute, for example.

Change your code from this:

<ion-toggle ng-disabled="{{$parent.isDisabled}}"></ion-toggle>

To this:

<ion-toggle ng-disabled="{{isDisabled}}"></ion-toggle>
2014-07-10 23:51:55 -06:00
..
2014-07-03 14:13:26 -05:00
2014-06-04 10:41:53 -05:00
2014-07-08 11:37:44 -06:00
2014-05-08 09:11:16 -06:00
2014-04-14 10:47:27 -06:00