Skip to content

Commit 74ab13c

Browse files
committed
v1.5.1-build.4601+sha.c966876
1 parent 84e2366 commit 74ab13c

33 files changed

+247
-248
lines changed
9.71 MB
Binary file not shown.

snapshot/angular-animate.js

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.5.1-build.4600+sha.b04871b
2+
* @license AngularJS v1.5.1-build.4601+sha.c966876
33
* (c) 2010-2016 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -2728,30 +2728,31 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
27282728
var animateChildren;
27292729
var elementDisabled = disabledElementsLookup.get(getDomNode(element));
27302730

2731-
var parentHost = element.data(NG_ANIMATE_PIN_DATA);
2731+
var parentHost = jqLite.data(element[0], NG_ANIMATE_PIN_DATA);
27322732
if (parentHost) {
27332733
parentElement = parentHost;
27342734
}
27352735

2736-
while (parentElement && parentElement.length) {
2736+
parentElement = getDomNode(parentElement);
2737+
2738+
while (parentElement) {
27372739
if (!rootElementDetected) {
27382740
// angular doesn't want to attempt to animate elements outside of the application
27392741
// therefore we need to ensure that the rootElement is an ancestor of the current element
27402742
rootElementDetected = isMatchingElement(parentElement, $rootElement);
27412743
}
27422744

2743-
var parentNode = parentElement[0];
2744-
if (parentNode.nodeType !== ELEMENT_NODE) {
2745+
if (parentElement.nodeType !== ELEMENT_NODE) {
27452746
// no point in inspecting the #document element
27462747
break;
27472748
}
27482749

2749-
var details = activeAnimationsLookup.get(parentNode) || {};
2750+
var details = activeAnimationsLookup.get(parentElement) || {};
27502751
// either an enter, leave or move animation will commence
27512752
// therefore we can't allow any animations to take place
27522753
// but if a parent animation is class-based then that's ok
27532754
if (!parentAnimationDetected) {
2754-
var parentElementDisabled = disabledElementsLookup.get(parentNode);
2755+
var parentElementDisabled = disabledElementsLookup.get(parentElement);
27552756

27562757
if (parentElementDisabled === true && elementDisabled !== false) {
27572758
// disable animations if the user hasn't explicitly enabled animations on the
@@ -2766,7 +2767,7 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
27662767
}
27672768

27682769
if (isUndefined(animateChildren) || animateChildren === true) {
2769-
var value = parentElement.data(NG_ANIMATE_CHILDREN_DATA);
2770+
var value = jqLite.data(parentElement, NG_ANIMATE_CHILDREN_DATA);
27702771
if (isDefined(value)) {
27712772
animateChildren = value;
27722773
}
@@ -2789,15 +2790,15 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
27892790

27902791
if (!rootElementDetected) {
27912792
// If no rootElement is detected, check if the parentElement is pinned to another element
2792-
parentHost = parentElement.data(NG_ANIMATE_PIN_DATA);
2793+
parentHost = jqLite.data(parentElement, NG_ANIMATE_PIN_DATA);
27932794
if (parentHost) {
27942795
// The pin target element becomes the next parent element
2795-
parentElement = parentHost;
2796+
parentElement = getDomNode(parentHost);
27962797
continue;
27972798
}
27982799
}
27992800

2800-
parentElement = parentElement.parent();
2801+
parentElement = parentElement.parentNode;
28012802
}
28022803

28032804
var allowAnimation = (!parentAnimationDetected || animateChildren) && elementDisabled !== true;

snapshot/angular-animate.min.js

Lines changed: 48 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

snapshot/angular-animate.min.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

snapshot/angular-aria.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.5.1-build.4600+sha.b04871b
2+
* @license AngularJS v1.5.1-build.4601+sha.c966876
33
* (c) 2010-2016 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/

snapshot/angular-aria.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

snapshot/angular-cookies.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.5.1-build.4600+sha.b04871b
2+
* @license AngularJS v1.5.1-build.4601+sha.c966876
33
* (c) 2010-2016 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/

snapshot/angular-cookies.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

snapshot/angular-loader.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.5.1-build.4600+sha.b04871b
2+
* @license AngularJS v1.5.1-build.4601+sha.c966876
33
* (c) 2010-2016 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -87,7 +87,7 @@ function minErr(module, ErrorConstructor) {
8787
return match;
8888
});
8989

90-
message += '\nhttp://errors.angularjs.org/1.5.1-build.4600+sha.b04871b/' +
90+
message += '\nhttp://errors.angularjs.org/1.5.1-build.4601+sha.c966876/' +
9191
(module ? module + '/' : '') + code;
9292

9393
for (i = SKIP_INDEXES, paramPrefix = '?'; i < templateArgs.length; i++, paramPrefix = '&') {

snapshot/angular-loader.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)