addTask: function (timestamp: string, description: string): Element {
const task = document.createElement("div");
task.appendChild(document.createTextNode(description));
- task.setAttribute("class", "task");
+ task.classList.add("task");
task.setAttribute("tabindex", "0");
task.setAttribute("data-created", timestamp);
task.setAttribute("data-state", "todo");
const [createTimestamp, description] = splitN(data, " ", 1);
return Model.edit(createTimestamp, description);
}
- if (command == "State") {
- const [createTimestamp, state] = splitN(data, " ", 1);
- return Model.setState(timestamp, createTimestamp, state);
- }
if (command == "Priority") {
const [createTimestamp, newPriority] = splitN(data, " ", 1);
return Model.setPriority(createTimestamp, parseFloat(newPriority));
}
+ if (command == "State") {
+ const [createTimestamp, state] = splitN(data, " ", 1);
+ return Model.setState(timestamp, createTimestamp, state);
+ }
},
record: function (entry: string) {