From bc0ec1f380d60d9a54b5c9ce021164508a282e61 Mon Sep 17 00:00:00 2001 From: n42k Date: Sat, 27 Oct 2018 16:21:59 +0100 Subject: [PATCH] Fixed using help's navigation buttons not resetting the help pane to the top. --- modules/ui/help.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/help.js b/modules/ui/help.js index 29942ca2a..a8b5bbbbd 100644 --- a/modules/ui/help.js +++ b/modules/ui/help.js @@ -318,7 +318,7 @@ export function uiHelp(context) { function clickHelp(d, i) { var rtl = (textDirection === 'rtl'); - pane.property('scrollTop', 0); + content.property('scrollTop', 0); doctitle.html(d.title); body.html(d.html);