add missing ,

This commit is contained in:
taoqf 2020-01-08 00:09:59 -05:00
parent 4b588b69e2
commit 2f2da9dc38

View file

@ -330,7 +330,7 @@ export class HTMLElement extends Node {
let result = [] as HTMLElement[]; let result = [] as HTMLElement[];
selectors.forEach((s) => { selectors.forEach((s) => {
result = result.concat(this.querySelectorAll(s.trim())); result = result.concat(this.querySelectorAll(s.trim()));
}) });
return result; return result;
} }
matcher = new Matcher(selector); matcher = new Matcher(selector);