diff options
-rw-r--r-- | modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js | 4 | ||||
-rw-r--r-- | modules/luci-mod-status/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 45b483962d..aad0383646 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 2e3d705c22..2aa3c46093 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([], [ |