removed: line number for section in outline

This commit is contained in:
quenousimporte 2023-07-07 10:17:49 +02:00
parent a4ca26115c
commit 89cb8937a9
1 changed files with 2 additions and 2 deletions

View File

@ -767,9 +767,9 @@ function showoutline()
return i > index && current != ""; return i > index && current != "";
})) }))
{ {
var nbcar = 40; var nbcar = 80;
next = next.length < nbcar ? next : next.substring(0, nbcar) + "..."; next = next.length < nbcar ? next : next.substring(0, nbcar) + "...";
outline["section line " + index + ": " + next] = pos; outline[next] = pos;
} }
} }
}); });