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

Commit 7947bc9

Browse files
committed
fix(ngAnimate): allow event listeners on document in IE
Fixes #13548
1 parent 495d40d commit 7947bc9

File tree

2 files changed

+47
-3
lines changed

2 files changed

+47
-3
lines changed

src/ngAnimate/animateQueue.js

+9-2
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,13 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
171171
return mergeAnimationOptions(element, options, {});
172172
}
173173

174+
// IE9-11 has no method "contains" in SVG element and in Node.prototype. Bug #10259.
175+
var contains = Node.prototype.contains || function(arg) {
176+
// jshint bitwise: false
177+
return this === arg || !!(this.compareDocumentPosition(arg) & 16);
178+
// jshint bitwise: true
179+
};
180+
174181
function findCallbacks(parent, element, event) {
175182
var targetNode = getDomNode(element);
176183
var targetParentNode = getDomNode(parent);
@@ -179,9 +186,9 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
179186
var entries = callbackRegistry[event];
180187
if (entries) {
181188
forEach(entries, function(entry) {
182-
if (entry.node.contains(targetNode)) {
189+
if (contains.call(entry.node, targetNode)) {
183190
matches.push(entry.callback);
184-
} else if (event === 'leave' && entry.node.contains(targetParentNode)) {
191+
} else if (event === 'leave' && contains.call(entry.node, targetParentNode)) {
185192
matches.push(entry.callback);
186193
}
187194
});

test/ngAnimate/animateSpec.js

+38-1
Original file line numberDiff line numberDiff line change
@@ -1535,7 +1535,9 @@ describe("animations", function() {
15351535
});
15361536

15371537
return function($document, $rootElement, $animate) {
1538-
jqLite($document[0].body).append($rootElement);
1538+
if ($document !== $rootElement) {
1539+
jqLite($document[0].body).append($rootElement);
1540+
}
15391541
$animate.enabled(true);
15401542
};
15411543
}));
@@ -1946,5 +1948,40 @@ describe("animations", function() {
19461948
expect(capturedElement).toBe(element);
19471949
}));
19481950

1951+
they('should trigger a callback for a $prop animation if the listener is on the document',
1952+
['enter', 'leave'], function($event) {
1953+
module(function($provide) {
1954+
$provide.factory('$rootElement', function($document) {
1955+
// Since we listen on document, $document must be the $rootElement for animations to work
1956+
return $document;
1957+
});
1958+
});
1959+
1960+
inject(function($animate, $rootScope, $document) {
1961+
1962+
var callbackTriggered = false;
1963+
1964+
1965+
$animate.on($event, $document[0], function() {
1966+
callbackTriggered = true;
1967+
});
1968+
1969+
var container = jqLite('<div></div>');
1970+
jqLite($document[0].body).append(container);
1971+
element = jqLite('<div></div>');
1972+
1973+
if ($event === 'leave') {
1974+
container.append(element);
1975+
}
1976+
1977+
$animate[$event](element, container);
1978+
$rootScope.$digest();
1979+
1980+
$animate.flush();
1981+
1982+
expect(callbackTriggered).toBe(true);
1983+
});
1984+
});
1985+
19491986
});
19501987
});

0 commit comments

Comments
 (0)