You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/AbpCompanyName.AbpProjectName.WebSpaAngular/Scripts/angular-animate.js
+19-17Lines changed: 19 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/**
2
-
* @license AngularJS v1.4.7
2
+
* @license AngularJS v1.4.8
3
3
* (c) 2010-2015 Google, Inc. http://angularjs.org
4
4
* License: MIT
5
5
*/
@@ -622,6 +622,8 @@ var ANIMATE_TIMER_KEY = '$$animateCss';
622
622
*
623
623
* * `event` - The DOM event (e.g. enter, leave, move). When used, a generated CSS class of `ng-EVENT` and `ng-EVENT-active` will be applied
624
624
* to the element during the animation. Multiple events can be provided when spaces are used as a separator. (Note that this will not perform any DOM operation.)
625
+
* * `structural` - Indicates that the `ng-` prefix will be added to the event class. Setting to `false` or omitting will turn `ng-EVENT` and
626
+
* `ng-EVENT-active` in `EVENT` and `EVENT-active`. Unused if `event` is omitted.
625
627
* * `easing` - The CSS easing value that will be applied to the transition or keyframe animation (or both).
626
628
* * `transitionStyle` - The raw CSS transition style that will be used (e.g. `1s linear all`).
627
629
* * `keyframeStyle` - The raw CSS keyframe animation style that will be used (e.g. `1s my_animation linear`).
@@ -2133,15 +2135,18 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
* // this will trigger `.slide.ng-enter` and `.slide.ng-enter-active`.
3536
-
* var runner = $animateCss(element, {
3541
+
* return $animateCss(element, {
3537
3542
* event: 'enter',
3538
3543
* structural: true
3539
-
* }).start();
3540
-
* runner.done(doneFn);
3544
+
* });
3541
3545
* }
3542
3546
* }
3543
-
* }]
3547
+
* }]);
3544
3548
* ```
3545
3549
*
3546
3550
* The nice thing here is that we can save bandwidth by sticking to our CSS-based animation code and we don't need to rely on a 3rd-party animation framework.
@@ -3552,19 +3556,17 @@ var $$AnimationProvider = ['$animateProvider', function($animateProvider) {
0 commit comments