Merge branch 'main' into feat/colors
This commit is contained in:
commit
387a3a8fa6
8
main.js
8
main.js
|
@ -27,7 +27,6 @@ var codelanguages = ["xml", "js", "sql"];
|
|||
var currentnote = null;
|
||||
var fileindex = 0;
|
||||
var workerid = null;
|
||||
var inactivityid = null;
|
||||
var backup = "";
|
||||
var localdata = null;
|
||||
var saved = true;
|
||||
|
@ -1989,11 +1988,6 @@ function postpone()
|
|||
});
|
||||
}
|
||||
|
||||
function inactivityalert()
|
||||
{
|
||||
alert("Last save was one hour ago. Should you refresh?");
|
||||
}
|
||||
|
||||
function save()
|
||||
{
|
||||
clearTimeout(workerid);
|
||||
|
@ -2059,8 +2053,6 @@ function save()
|
|||
{
|
||||
console.log("...data saved on server");
|
||||
saved = true;
|
||||
clearTimeout(inactivityid);
|
||||
inactivityid = setTimeout(inactivityalert, 60 * 60 * 1000);
|
||||
})
|
||||
.catch(remotecallfailed)
|
||||
.finally(() =>
|
||||
|
|
Loading…
Reference in New Issue