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

Commit

Permalink
fix(dom_util): loosen typing of nodes list
Browse files Browse the repository at this point in the history
Closes #1359
  • Loading branch information
chirayuk committed Aug 15, 2014
1 parent 00b67be commit 7419e55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/core_dom/common.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ part of angular.core.dom_internal;

List<dom.Node> cloneElements(List<dom.Node> elements) {
int length = elements.length;
var clones = new List<dom.Node>(length);
var clones = new List(length);
for(var i=0; i < length; i++) {
clones[i] = elements[i].clone(true);
}
Expand Down

0 comments on commit 7419e55

Please sign in to comment.