]> git.scottworley.com Git - vopamoi/blobdiff - vopamoi.ts
Do more filtering in faster browser-native code
[vopamoi] / vopamoi.ts
index d0f4fa157b3645d32e1626b2cf582e208f8b2e22..cbb9af23d308527302aedc4fc40493cf297f90a0 100644 (file)
@@ -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;
       }
     }