From 7419e55ceadb1e3f18925be543e93b9f69303d7e Mon Sep 17 00:00:00 2001 From: Chirayu Krishnappa Date: Fri, 15 Aug 2014 15:07:14 -0700 Subject: [PATCH] fix(dom_util): loosen typing of nodes list Closes #1359 --- lib/core_dom/common.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core_dom/common.dart b/lib/core_dom/common.dart index 6ead01361..606c9c32e 100644 --- a/lib/core_dom/common.dart +++ b/lib/core_dom/common.dart @@ -2,7 +2,7 @@ part of angular.core.dom_internal; List cloneElements(List elements) { int length = elements.length; - var clones = new List(length); + var clones = new List(length); for(var i=0; i < length; i++) { clones[i] = elements[i].clone(true); }