diff options
| author | Lucas Galfasó | 2013-03-03 22:23:29 -0300 | 
|---|---|---|
| committer | James deBoer | 2013-03-11 11:31:04 -0700 | 
| commit | e88d6179c3a6a137e75fa09de906fc83c6515db2 (patch) | |
| tree | bee7a8a3cb8a4cbcd6304baf456233a66f4f15d6 /test/ng/exceptionHandlerSpec.js | |
| parent | 90ba9aadc6693e01487e6e14e7d1065658572e0f (diff) | |
| download | angular.js-e88d6179c3a6a137e75fa09de906fc83c6515db2.tar.bz2 | |
feat(ng:switch): Preserve the order of the elements not in the ng-switch
Preserve the order of the elements that are not part of a case nor default in
a ng-switch directive
BREAKING CHANGE: elements not in the ng-switch were rendered after the
    ng-switch elements.  Now they are rendered in-place.
    Ng-switch directives should be updated with non ng-switch elements
    in render-order.  e.g.
    The following was previously rendered with <li>1</li> after "2":
    <ul ng-switch="select">
        <li>1</li>
        <li ng-switch-when="option">2</li>
    </ul>
    To keep the old behaviour, say:
    <ul ng-switch="select">
        <li ng-switch-when="1">2</li>
        <li>1</li>
    </ul>
Closes #1074
Diffstat (limited to 'test/ng/exceptionHandlerSpec.js')
0 files changed, 0 insertions, 0 deletions
