mirror of
https://github.com/zulip/zulip.git
synced 2025-11-07 07:23:22 +00:00
eslint: Expand no-unused-vars check to all function parameters.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
95f8ab1626
commit
407c16fc77
@@ -253,7 +253,7 @@ export function initialize_kitchen_sink_stuff() {
|
||||
// the code here can probably be moved to more
|
||||
// specific-purpose modules like message_viewport.js.
|
||||
|
||||
const throttled_mousewheelhandler = _.throttle((e, delta) => {
|
||||
const throttled_mousewheelhandler = _.throttle((_e, delta) => {
|
||||
// Most of the mouse wheel's work will be handled by the
|
||||
// scroll handler, but when we're at the top or bottom of the
|
||||
// page, the pointer may still need to move.
|
||||
|
||||
Reference in New Issue
Block a user