| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-09-27 | fix(jqLite): use get/setAttribute so that jqLite works on SVG nodes | Brian Ford | |
| jqLite previously used `elt.className` to add and remove classes from a DOM Node, but because the className property is not writable on SVG elements, it doesn't work with them. This patch replaces accesses to `className` with `get/setAttribute`. `classList` was also considered as a solution, but because only IE10+ supports it, we have to wait. :'( The JqLiteAddClass/JQLiteRemoveClass methods are now also used directly by $animate to work around the jQuery not being able to handle class modifications on SVG elements. Closes #3858 | |||
| 2013-09-03 | fix(ngAnimate): cut down on extra $timeout calls | Matias Niemelä | |
| 2013-08-03 | chore(ngdocs): provide docs for the core $animator service | Matias Niemelä | |
| 2013-08-03 | fix(ngAnimate): remove compound JS selector animations | Matias Niemelä | |
| 2013-07-26 | fix(ngAnimate): $timeout integration and cancel callbacks added | Matias Niemelä | |
| 2013-07-26 | chore($animate): replace show/hide with addClass/removeClass | Matias Niemelä | |
| 2013-07-26 | feat(ngAnimate): complete rewrite of animations | Matias Niemelä | |
| - ngAnimate directive is gone and was replaced with class based animations/transitions - support for triggering animations on css class additions and removals - done callback was added to all animation apis - $animation and $animator where merged into a single $animate service with api: - $animate.enter(element, parent, after, done); - $animate.leave(element, done); - $animate.move(element, parent, after, done); - $animate.addClass(element, className, done); - $animate.removeClass(element, className, done); BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions | |||
