mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
Initial commit
This commit is contained in:
26
js/angular/service/animation.js
vendored
Normal file
26
js/angular/service/animation.js
vendored
Normal 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) {
|
||||
});
|
||||
Reference in New Issue
Block a user