tabs - add setting to switch tabs with mouse-wheel (#13902) (#95222)

This commit is contained in:
Benjamin Pasero
2020-04-14 14:58:05 +02:00
committed by GitHub
parent 7ddda59f1c
commit e2bcc4d8c7
6 changed files with 52 additions and 5 deletions

View File

@@ -822,6 +822,7 @@ export const EventType = {
MOUSE_OUT: 'mouseout',
MOUSE_ENTER: 'mouseenter',
MOUSE_LEAVE: 'mouseleave',
MOUSE_WHEEL: browser.isEdge ? 'mousewheel' : 'wheel',
POINTER_UP: 'pointerup',
POINTER_DOWN: 'pointerdown',
POINTER_MOVE: 'pointermove',