From: Scott Worley Date: Thu, 27 Jan 2022 20:45:58 +0000 (-0800) Subject: Do more filtering in faster browser-native code X-Git-Url: http://git.scottworley.com/vopamoi/commitdiff_plain/54c191805520acf16e11b41f812571cfaf93706f Do more filtering in faster browser-native code --- diff --git a/vopamoi.ts b/vopamoi.ts index d0f4fa1..cbb9af2 100644 --- a/vopamoi.ts +++ b/vopamoi.ts @@ -80,8 +80,8 @@ const Model = { }, hasTag: function (task: Element, tag: string): Element | null { - for (const child of task.children) { - if (child.classList.contains("tag") && child.textContent === tag) { + for (const child of task.getElementsByClassName("tag")) { + if (child.textContent === tag) { return child; } }