Skip to content
This repository has been archived by the owner on Jul 11, 2019. It is now read-only.

Commit

Permalink
fix: MaterialLayout fixes dart-lang#24868
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMitterer committed Nov 25, 2015
1 parent 8429b2e commit 3e4514c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/components/MaterialLayout.dart
Expand Up @@ -182,7 +182,7 @@ class MaterialLayout extends MdlComponent {
element.remove(); // element.parent.removeChild (element); element.remove(); // element.parent.removeChild (element);
container.append(element); container.append(element);


final List<dom.Element> directChildren = element.childNodes; final List<dom.Node> directChildren = element.childNodes;


directChildren.forEach((final child) { directChildren.forEach((final child) {


Expand Down

0 comments on commit 3e4514c

Please sign in to comment.