fixed: add events after todo header
This commit is contained in:
parent
b992e1fbe5
commit
c68d259ec9
11
main.js
11
main.js
|
@ -1313,8 +1313,15 @@ function checkevents()
|
||||||
{
|
{
|
||||||
showtemporaryinfo("Calendar changes to check");
|
showtemporaryinfo("Calendar changes to check");
|
||||||
var todo = getnote("todo");
|
var todo = getnote("todo");
|
||||||
var content = todo.content;
|
var idx = 0;
|
||||||
todo.content = newcontent.join("\n") + "\n" + content;
|
if (todo.content.startsWith("---"))
|
||||||
|
{
|
||||||
|
idx = todo.content.indexOf("---", 3) + 4;
|
||||||
|
}
|
||||||
|
todo.content = todo.content.substring(0, idx)
|
||||||
|
+ newcontent.join("\n")
|
||||||
|
+ "\n"
|
||||||
|
+ todo.content.substring(idx);
|
||||||
|
|
||||||
// reload todo if open
|
// reload todo if open
|
||||||
if (currentnote == todo)
|
if (currentnote == todo)
|
||||||
|
|
Loading…
Reference in New Issue