changed: use alert to display info
This commit is contained in:
parent
c22777ce38
commit
b3296f2b4d
19
main.js
19
main.js
|
@ -500,7 +500,7 @@ function showinfo()
|
||||||
"session start: " + stat.ses.t,
|
"session start: " + stat.ses.t,
|
||||||
"session queries: " + stat.ses.q,
|
"session queries: " + stat.ses.q,
|
||||||
"session data sent: " + formatsize(stat.ses.d)
|
"session data sent: " + formatsize(stat.ses.d)
|
||||||
], "Note info");
|
].join("\n"));
|
||||||
}
|
}
|
||||||
|
|
||||||
function loadtheme(theme)
|
function loadtheme(theme)
|
||||||
|
@ -840,20 +840,9 @@ function editsettings()
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function showtemporaryinfo(data, title)
|
function showtemporaryinfo(info)
|
||||||
{
|
{
|
||||||
if (typeof data == "string")
|
alert(info);
|
||||||
{
|
|
||||||
data = new Array(data);
|
|
||||||
}
|
|
||||||
|
|
||||||
filter.placeholder = title || "Info";
|
|
||||||
searchinlist(data)
|
|
||||||
.then(() =>
|
|
||||||
{
|
|
||||||
filter.placeholder = "Search...";
|
|
||||||
});
|
|
||||||
//md.focus();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function getwords()
|
function getwords()
|
||||||
|
@ -1041,7 +1030,7 @@ function remotecallfailed(error)
|
||||||
if (error)
|
if (error)
|
||||||
{
|
{
|
||||||
console.warn(error);
|
console.warn(error);
|
||||||
showtemporaryinfo(error, "Error");
|
showtemporaryinfo("Error: " + error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue