| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-04-11 | fix(ngAnimate): prevent animation on initial page load | Misko Hevery | |
| 2013-04-11 | fix(ngAnimate): skip animation on first render | Matias Niemelä | |
| 2013-04-02 | feat(ngAnimate): add support for animation | Misko Hevery | |
| 2013-03-11 | feat(ng:switch): Preserve the order of the elements not in the ng-switch | Lucas Galfasó | |
| 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 | |||
| 2013-02-14 | feat(ngSwitch): support multiple matches on ngSwitchWhen and ngSwitchDefault | Lucas Galfasó | |
| Closes #1074 | |||
| 2013-01-18 | fix(ngSwitch): don't leak when destroyed while not attached | danilsomsikov | |
| The leak can occur when ngSwich is used inside ngRepeat or any other directive which is destroyed while its transcluded content (which includes ngSwitch) is not attached to the DOM. Refactor ngSwitch to use controller instead of storing data on compile node. This means that we don't need to clean up the jq data cache. Controller reference is released when the linking fn is released. Closes #1621 | |||
| 2012-04-09 | chore(tests): rename all directive names to the normalized form | Igor Minar | |
| 2012-03-28 | chore(module): move files around in preparation for more modules | Misko Hevery | |
