Initial commit

This commit is contained in:
Max Lynch
2014-05-01 08:15:48 -05:00
committed by Andy Joslin
parent f831dc3cc7
commit dffb3bec46

26
js/angular/service/animation.js vendored Normal file
View File

@@ -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) {
});