Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Commit 7419e55

Browse files
committed
fix(dom_util): loosen typing of nodes list
Closes #1359
1 parent 00b67be commit 7419e55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/core_dom/common.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ part of angular.core.dom_internal;
22

33
List<dom.Node> cloneElements(List<dom.Node> elements) {
44
int length = elements.length;
5-
var clones = new List<dom.Node>(length);
5+
var clones = new List(length);
66
for(var i=0; i < length; i++) {
77
clones[i] = elements[i].clone(true);
88
}

0 commit comments

Comments
 (0)