From 7893f2d08aaa1a0419ede1a695a25781f60e6ba6 Mon Sep 17 00:00:00 2001 From: Paul Donald Date: Mon, 8 Jul 2024 16:34:31 +0200 Subject: [PATCH] luci-mod-status: log viewers - change focus() to scrollIntoView() scrollIntoView() is more universally supported and standards tracked. Closes #7186 Updates 9370bdddaede2feeb581193158d83f5062d5a318 Signed-off-by: Paul Donald --- .../htdocs/luci-static/resources/view/status/dmesg.js | 4 ++-- .../htdocs/luci-static/resources/view/status/syslog.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js index 45b483962d5f..aad0383646c3 100644 --- a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js +++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js @@ -38,7 +38,7 @@ return view.extend({ }, _('Scroll to tail', 'scroll to bottom (the tail) of the log file') ); scrollDownButton.addEventListener('click', function() { - scrollUpButton.focus(); + scrollUpButton.scrollIntoView(); }); var scrollUpButton = E('button', { @@ -47,7 +47,7 @@ return view.extend({ }, _('Scroll to head', 'scroll to top (the head) of the log file') ); scrollUpButton.addEventListener('click', function() { - scrollDownButton.focus(); + scrollDownButton.scrollIntoView(); }); return E([], [ diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js index 2e3d705c2220..2aa3c4609368 100644 --- a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js +++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js @@ -43,7 +43,7 @@ return view.extend({ }, _('Scroll to tail', 'scroll to bottom (the tail) of the log file') ); scrollDownButton.addEventListener('click', function() { - scrollUpButton.focus(); + scrollUpButton.scrollIntoView(); }); var scrollUpButton = E('button', { @@ -52,7 +52,7 @@ return view.extend({ }, _('Scroll to head', 'scroll to top (the head) of the log file') ); scrollUpButton.addEventListener('click', function() { - scrollDownButton.focus(); + scrollDownButton.scrollIntoView(); }); return E([], [