From 89cb8937a991acd86eeacb26e1672fc5451953b6 Mon Sep 17 00:00:00 2001 From: quenousimporte Date: Fri, 7 Jul 2023 10:17:49 +0200 Subject: [PATCH] removed: line number for section in outline --- main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.js b/main.js index 7056f55..0a52df7 100644 --- a/main.js +++ b/main.js @@ -767,9 +767,9 @@ function showoutline() return i > index && current != ""; })) { - var nbcar = 40; + var nbcar = 80; next = next.length < nbcar ? next : next.substring(0, nbcar) + "..."; - outline["section line " + index + ": " + next] = pos; + outline[next] = pos; } } });