+ completeEdit: function (event: Event) {
+ const input = event.target as HTMLInputElement;
+ const task = input.parentElement!;
+ const oldDescription = task.getAttribute("data-description")!;
+ const newDescription = input.value;
+ input.removeEventListener("blur", BrowserUI.completeEdit);
+ task.removeChild(task.children[0]);
+ task.removeAttribute("data-description");
+ task.focus();
+ if (newDescription === oldDescription) {
+ task.textContent = oldDescription;
+ } else {
+ UI.edit(task.getAttribute("data-created")!, newDescription, oldDescription);
+ }
+ },
+
+ firstVisibleTask: function () {
+ for (const task of document.getElementsByClassName("task")) {
+ if (task instanceof HTMLElement && task.style.display !== "none") {
+ return task;
+ }
+ }
+ },
+
+ focusTaskNameInput: function (event: Event) {