Skip to content

Commit

Permalink
Merge pull request #514 from PolymerElements/var
Browse files Browse the repository at this point in the history
add missing var
  • Loading branch information
frankiefu authored Sep 28, 2017
2 parents a10c636 + 5dca575 commit 27e4240
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers/helpers.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
while (queue.length > 0) {
var node = queue.shift();
matches.push.apply(matches, node.querySelectorAll(selector));
for (i = 0; node.children[i]; i++) {
for (var i = 0; node.children[i]; i++) {
if (node.children[i].shadowRoot) {
queue.push(node.children[i].shadowRoot);
}
Expand Down

0 comments on commit 27e4240

Please sign in to comment.