changed: prompt new note title

This commit is contained in:
quenousimporte 2023-10-04 08:44:10 +02:00
parent a759008dd9
commit c1967c2f60
1 changed files with 5 additions and 1 deletions

View File

@ -2237,7 +2237,11 @@ function timestamp()
function startnewnote()
{
loadnote(timestamp());
var title = prompt("Note title: ", timestamp());
if (title)
{
loadnote(title);
}
}
function showhelp()