From 1094435a387f0553f689e42d94fbba8114659025 Mon Sep 17 00:00:00 2001 From: Manuel Cillero Date: Tue, 26 Jul 2022 06:29:49 +0200 Subject: [PATCH] =?UTF-8?q?Corrige=20scroll=20no=20deseado=20tras=20carga?= =?UTF-8?q?=20de=20p=C3=A1gina?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Al integrar el menú lateral (sidebar) en el `div #mdbook` el efecto del `scrollIntoView()` también afecta al contenido del documento desplazando toda la página. --- website/doc/theme/book.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/doc/theme/book.js b/website/doc/theme/book.js index c4f264aa..16f31323 100644 --- a/website/doc/theme/book.js +++ b/website/doc/theme/book.js @@ -548,7 +548,7 @@ function playground_text(playground) { var activeSection = document.getElementById("sidebar").querySelector(".active"); if (activeSection) { // https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView - activeSection.scrollIntoView({ block: 'center' }); + // activeSection.scrollIntoView({ block: 'center' }); } })();