fix load previous and next
This commit is contained in:
parent
901e0aa812
commit
7edb42ef83
13
main.js
13
main.js
|
@ -1532,20 +1532,21 @@ function loadlast()
|
||||||
|
|
||||||
function loadprevious()
|
function loadprevious()
|
||||||
{
|
{
|
||||||
//var list = sortedlist();
|
var list = sortedlist();
|
||||||
var index = localdata.indexOf(currentnote);
|
var index = list.findIndex(i => i.title == title.value);
|
||||||
if (index > -1 && index < localdata.length - 1)
|
if (index > -1 && index < list.length - 1)
|
||||||
{
|
{
|
||||||
loadnote(localdata[index + 1].title);
|
loadnote(list[index + 1].title);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function loadnext()
|
function loadnext()
|
||||||
{
|
{
|
||||||
var index = localdata.indexOf(currentnote);
|
var list = sortedlist();
|
||||||
|
var index = list.findIndex(i => i.title == title.value);
|
||||||
if (index > -1 && index > 0)
|
if (index > -1 && index > 0)
|
||||||
{
|
{
|
||||||
loadnote(localdata[index - 1].title);
|
loadnote(list[index - 1].title);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue