Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit d8e9f08

Browse files
committed
feat($animate): complete refactor of internal animation code
1 parent 4d8ea9d commit d8e9f08

31 files changed

+8046
-7726
lines changed

angularFiles.js

+11-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,17 @@ var angularFiles = {
8787

8888
'angularModules': {
8989
'ngAnimate': [
90-
'src/ngAnimate/animate.js'
90+
'src/ngAnimate/shared.js',
91+
'src/ngAnimate/animateChildrenDirective.js',
92+
'src/ngAnimate/animateCss.js',
93+
'src/ngAnimate/animateCssDriver.js',
94+
'src/ngAnimate/animateJs.js',
95+
'src/ngAnimate/animateJsDriver.js',
96+
'src/ngAnimate/animateOptions.js',
97+
'src/ngAnimate/animateQueue.js',
98+
'src/ngAnimate/animateRunner.js',
99+
'src/ngAnimate/animation.js',
100+
'src/ngAnimate/module.js'
91101
],
92102
'ngCookies': [
93103
'src/ngCookies/cookies.js',

css/angular.css

+8
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,11 @@
99
ng\:form {
1010
display: block;
1111
}
12+
13+
.ng-animate-shim {
14+
visibility:hidden;
15+
}
16+
17+
.ng-animate-anchor {
18+
position:absolute;
19+
}

src/AngularPublic.js

+2
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
5858
$AnchorScrollProvider,
5959
$AnimateProvider,
60+
$$CoreAnimateQueueProvider,
6061
$BrowserProvider,
6162
$CacheFactoryProvider,
6263
$ControllerProvider,
@@ -216,6 +217,7 @@ function publishExternalAPI(angular) {
216217
$provide.provider({
217218
$anchorScroll: $AnchorScrollProvider,
218219
$animate: $AnimateProvider,
220+
$$animateQueue: $$CoreAnimateQueueProvider,
219221
$browser: $BrowserProvider,
220222
$cacheFactory: $CacheFactoryProvider,
221223
$controller: $ControllerProvider,

0 commit comments

Comments
 (0)