]> git.scottworley.com Git - vopamoi/blobdiff - vopamoi.ts
Put tasks in a div
[vopamoi] / vopamoi.ts
index ad1051ad5f9ffc6a4712dc1acada82944e643fac..725f3a0209c2b41a51d8b18afe2834fa545b6a72 100644 (file)
@@ -15,7 +15,7 @@ function splitN(str: string, delimiter: string, limit: number = MAX_SAFE_INTEGER
 
 const Model = {
   addTask: function (timestamp: string, description: string) {
-    document.body.appendChild(this.createTask(timestamp, description)).focus();
+    document.getElementById("tasks")!.appendChild(this.createTask(timestamp, description)).focus();
   },
 
   createTask: function (timestamp: string, description: string) {