11/**
2- * @license AngularJS v1.6.8
3- * (c) 2010-2017 Google, Inc. http://angularjs.org
2+ * @license AngularJS v1.6.10
3+ * (c) 2010-2018 Google, Inc. http://angularjs.org
44 * License: MIT
55 */
66( function ( window , angular ) { 'use strict' ;
@@ -532,7 +532,7 @@ var ANIMATE_TIMER_KEY = '$$animateCss';
532532 * Once again, `$animateCss` is designed to be used inside of a registered JavaScript animation that
533533 * is powered by ngAnimate. It is possible to use `$animateCss` directly inside of a directive, however,
534534 * any automatic control over cancelling animations and/or preventing animations from being run on
535- * child elements will not be handled by Angular . For this to work as expected, please use `$animate` to
535+ * child elements will not be handled by AngularJS . For this to work as expected, please use `$animate` to
536536 * trigger the animation and then setup a JavaScript animation that injects `$animateCss` to trigger
537537 * the CSS animation.
538538 *
@@ -2774,7 +2774,7 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
27742774
27752775 while ( parentNode ) {
27762776 if ( ! rootNodeDetected ) {
2777- // angular doesn't want to attempt to animate elements outside of the application
2777+ // AngularJS doesn't want to attempt to animate elements outside of the application
27782778 // therefore we need to ensure that the rootElement is an ancestor of the current element
27792779 rootNodeDetected = ( parentNode === rootNode ) ;
27802780 }
@@ -3387,7 +3387,7 @@ var ngAnimateSwapDirective = ['$animate', '$rootScope', function($animate, $root
33873387 * @description
33883388 *
33893389 * The `ngAnimate` module provides support for CSS-based animations (keyframes and transitions) as well as JavaScript-based animations via
3390- * callback hooks. Animations are not enabled by default, however, by including `ngAnimate` the animation hooks are enabled for an Angular app.
3390+ * callback hooks. Animations are not enabled by default, however, by including `ngAnimate` the animation hooks are enabled for an AngularJS app.
33913391 *
33923392 * ## Usage
33933393 * Simply put, there are two ways to make use of animations when ngAnimate is used: by using **CSS** and **JavaScript**. The former works purely based
@@ -3416,7 +3416,7 @@ var ngAnimateSwapDirective = ['$animate', '$rootScope', function($animate, $root
34163416 * ## CSS-based Animations
34173417 *
34183418 * CSS-based animations with ngAnimate are unique since they require no JavaScript code at all. By using a CSS class that we reference between our HTML
3419- * and CSS code we can create an animation that will be picked up by Angular when an underlying directive performs an operation.
3419+ * and CSS code we can create an animation that will be picked up by AngularJS when an underlying directive performs an operation.
34203420 *
34213421 * The example below shows how an `enter` animation can be made possible on an element using `ng-if`:
34223422 *
@@ -3675,7 +3675,7 @@ var ngAnimateSwapDirective = ['$animate', '$rootScope', function($animate, $root
36753675 * enter: function(element, doneFn) {
36763676 * jQuery(element).fadeIn(1000, doneFn);
36773677 *
3678- * // remember to call doneFn so that angular
3678+ * // remember to call doneFn so that AngularJS
36793679 * // knows that the animation has concluded
36803680 * },
36813681 *
@@ -3723,7 +3723,7 @@ var ngAnimateSwapDirective = ['$animate', '$rootScope', function($animate, $root
37233723 *
37243724 * ## CSS + JS Animations Together
37253725 *
3726- * AngularJS 1.4 and higher has taken steps to make the amalgamation of CSS and JS animations more flexible. However, unlike earlier versions of Angular ,
3726+ * AngularJS 1.4 and higher has taken steps to make the amalgamation of CSS and JS animations more flexible. However, unlike earlier versions of AngularJS ,
37273727 * defining CSS and JS animations to work off of the same CSS class will not work anymore. Therefore the example below will only result in **JS animations taking
37283728 * charge of the animation**:
37293729 *
@@ -4039,7 +4039,7 @@ var ngAnimateSwapDirective = ['$animate', '$rootScope', function($animate, $root
40394039 *
40404040 * ## Using $animate in your directive code
40414041 *
4042- * So far we've explored how to feed in animations into an Angular application, but how do we trigger animations within our own directives in our application?
4042+ * So far we've explored how to feed in animations into an AngularJS application, but how do we trigger animations within our own directives in our application?
40434043 * By injecting the `$animate` service into our directive code, we can trigger structural and class-based hooks which can then be consumed by animations. Let's
40444044 * imagine we have a greeting box that shows and hides itself when the data changes
40454045 *
@@ -4082,7 +4082,7 @@ var ngAnimateSwapDirective = ['$animate', '$rootScope', function($animate, $root
40824082 * });
40834083 * ```
40844084 *
4085- * (Note that earlier versions of Angular prior to v1.4 required the promise code to be wrapped using `$scope.$apply(...)`. This is not the case
4085+ * (Note that earlier versions of AngularJS prior to v1.4 required the promise code to be wrapped using `$scope.$apply(...)`. This is not the case
40864086 * anymore.)
40874087 *
40884088 * In addition to the animation promise, we can also make use of animation-related callbacks within our directives and controller code by registering
@@ -4097,7 +4097,7 @@ var ngAnimateSwapDirective = ['$animate', '$rootScope', function($animate, $root
40974097 * }])
40984098 * ```
40994099 *
4100- * (Note that you will need to trigger a digest within the callback to get angular to notice any scope-related changes.)
4100+ * (Note that you will need to trigger a digest within the callback to get AngularJS to notice any scope-related changes.)
41014101 */
41024102
41034103var copy ;
@@ -4124,7 +4124,7 @@ var noop;
41244124 * Click here {@link ng.$animate to learn more about animations with `$animate`}.
41254125 */
41264126angular . module ( 'ngAnimate' , [ ] , function initAngularHelpers ( ) {
4127- // Access helpers from angular core.
4127+ // Access helpers from AngularJS core.
41284128 // Do it inside a `config` block to ensure `window.angular` is available.
41294129 noop = angular . noop ;
41304130 copy = angular . copy ;
@@ -4139,7 +4139,7 @@ angular.module('ngAnimate', [], function initAngularHelpers() {
41394139 isFunction = angular . isFunction ;
41404140 isElement = angular . isElement ;
41414141} )
4142- . info ( { angularVersion : '1.6.8 ' } )
4142+ . info ( { angularVersion : '1.6.10 ' } )
41434143 . directive ( 'ngAnimateSwap' , ngAnimateSwapDirective )
41444144
41454145 . directive ( 'ngAnimateChildren' , $$AnimateChildrenDirective )
0 commit comments