diff --git a/js/angular/service/animation.js b/js/angular/service/animation.js new file mode 100644 index 0000000000..3da17c15fd --- /dev/null +++ b/js/angular/service/animation.js @@ -0,0 +1,26 @@ +/** + * @ngdoc service + * @name $ionicAnimation + * @module ionic + * @description + * + * A powerful animation and transition system for Ionic apps. + * + * @usage + * + * ```js + * angular.module('mySuperApp', ['ionic']) + * .controller(function($scope, $ionicAnimation) { + * }); + * ``` + * + */ +IonicModule +.factory('$ionicAnimation', [ + '$rootScope', + '$document', + '$compile', + '$timeout', + '$interval', +function($rootScope, $document, $compile, $timeout, $interval) { +});