]> git.scottworley.com Git - vopamoi/blobdiff - vopamoi.ts
Wrap task description before going into tag space
[vopamoi] / vopamoi.ts
index ad7a93e7928c503c596c44b7414f1a9eac5a0cd4..33e37a37e851db876b260dc14c406f6ebc5e6845 100644 (file)
@@ -67,7 +67,7 @@ const Model = {
         return tag;
       }
     }
-    task.appendChild(tag);
+    task.insertBefore(tag, task.getElementsByClassName("desc")[0]!);
     return tag;
   },
 
@@ -76,7 +76,7 @@ const Model = {
     if (!target) return null;
     if (target.hasAttribute("data-description")) {
       // Oh no: An edit has arrived from a replica while a local edit is in progress.
-      const input = target.firstChild as HTMLInputElement;
+      const input = target.getElementsByTagName("input")[0]!;
       if (
         input.value === target.getAttribute("data-description") &&
         input.selectionStart === input.value.length &&