]> git.scottworley.com Git - vopamoi/commitdiff
Do more filtering in faster browser-native code
authorScott Worley <scottworley@scottworley.com>
Thu, 27 Jan 2022 20:45:58 +0000 (12:45 -0800)
committerScott Worley <scottworley@scottworley.com>
Thu, 27 Jan 2022 20:45:58 +0000 (12:45 -0800)
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;
       }
     }