Skip to content

Commit ee5d698

Browse files
committed
v1.4.0-build.3970+sha.6dd64ab
1 parent 0a8a4b8 commit ee5d698

32 files changed

+55
-55
lines changed
9.39 MB
Binary file not shown.

snapshot/angular-animate.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.4.0-build.3969+sha.1a0bcb1
2+
* @license AngularJS v1.4.0-build.3970+sha.6dd64ab
33
* (c) 2010-2015 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -2007,7 +2007,7 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
20072007

20082008
var className = [node.className, options.addClass, options.removeClass].join(' ');
20092009
if (!isAnimatableClassName(className)) {
2010-
runner.end();
2010+
close();
20112011
return runner;
20122012
}
20132013

@@ -2248,6 +2248,12 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
22482248
var animateChildren;
22492249

22502250
while (parent && parent.length) {
2251+
if (!rootElementDetected) {
2252+
// angular doesn't want to attempt to animate elements outside of the application
2253+
// therefore we need to ensure that the rootElement is an ancestor of the current element
2254+
rootElementDetected = isMatchingElement(parent, $rootElement);
2255+
}
2256+
22512257
var parentNode = parent[0];
22522258
if (parentNode.nodeType !== ELEMENT_NODE) {
22532259
// no point in inspecting the #document element
@@ -2272,12 +2278,6 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
22722278
// there is no need to continue traversing at this point
22732279
if (parentAnimationDetected && animateChildren === false) break;
22742280

2275-
if (!rootElementDetected) {
2276-
// angular doesn't want to attempt to animate elements outside of the application
2277-
// therefore we need to ensure that the rootElement is an ancestor of the current element
2278-
rootElementDetected = isMatchingElement(parent, $rootElement);
2279-
}
2280-
22812281
if (!bodyElementDetected) {
22822282
// we also need to ensure that the element is or will be apart of the body element
22832283
// otherwise it is pointless to even issue an animation to be rendered

snapshot/angular-animate.min.js

Lines changed: 4 additions & 4 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: 1 addition & 1 deletion
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.4.0-build.3969+sha.1a0bcb1
2+
* @license AngularJS v1.4.0-build.3970+sha.6dd64ab
33
* (c) 2010-2015 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.4.0-build.3969+sha.1a0bcb1
2+
* @license AngularJS v1.4.0-build.3970+sha.6dd64ab
33
* (c) 2010-2015 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.4.0-build.3969+sha.1a0bcb1
2+
* @license AngularJS v1.4.0-build.3970+sha.6dd64ab
33
* (c) 2010-2015 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -58,7 +58,7 @@ function minErr(module, ErrorConstructor) {
5858
return match;
5959
});
6060

61-
message += '\nhttp://errors.angularjs.org/1.4.0-build.3969+sha.1a0bcb1/' +
61+
message += '\nhttp://errors.angularjs.org/1.4.0-build.3970+sha.6dd64ab/' +
6262
(module ? module + '/' : '') + code;
6363

6464
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)