1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 1× 1× | /** * @ngdoc overview * @name app.animation * @description * * # app.animation * * The `app.animation` module provides support for animating view * elements as they are shown or hidden. */ (function() { 'use strict'; angular .module('app.animation', ['ngAnimate']); })(); |