]> git.scottworley.com Git - vopamoi/blobdiff - vopamoi.ts
Scroll to top when entering a new task
[vopamoi] / vopamoi.ts
index 3798488956531e1c9e9dd4d6112535d520d96de3..3b0b470bf80e088ad4224788cea8792f0ffd8829 100644 (file)
@@ -287,8 +287,9 @@ function BrowserUI() {
     },
 
     beginEdit: function (event: Event) {
-      const task = document.activeElement;
+      var task = document.activeElement;
       if (!task) return;
+      if (task.classList.contains("tag")) task = task.parentElement!;
       const input = document.createElement("input");
       const desc = task.getElementsByClassName("desc")[0];
       const oldDescription = desc.textContent!;
@@ -358,6 +359,7 @@ function BrowserUI() {
         taskFocusedBeforeJumpingToInput = document.activeElement;
       }
       document.getElementById("taskName")!.focus();
+      window.scroll(0, 0);
       event.preventDefault();
     },