1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 15:24:12 +01:00

Fix brokenness.

This commit is contained in:
Kris Maglione
2015-02-23 13:01:52 -08:00
parent 1531910e19
commit 271c3a95c7
2 changed files with 3 additions and 3 deletions

View File

@@ -1486,7 +1486,7 @@ var DOM = Class("DOM", {
yield elem;
if (matcher.css)
for (let [, elem] of iter(util.withProperErrors("querySelectorAll", node, matcher.css)))
for (let elem of util.withProperErrors("querySelectorAll", node, matcher.css))
yield elem;
}, {
css: css.join(", "),