From dffb3bec46205eec0e6c602a8e2fdc3f897b1005 Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Thu, 1 May 2014 08:15:48 -0500 Subject: [PATCH] Initial commit --- js/angular/service/animation.js | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 js/angular/service/animation.js 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) { +});