[Glitch] Bump detect-passive-events from 1.0.5 to 2.0.1
Port e16b0fb15a
to glitch-soc
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh>
Signed-off-by: Thibaut Girka <thib@sitedethib.com>
This commit is contained in:
committed by
Thibaut Girka
parent
412218af2e
commit
91c2f14fd2
@ -1,9 +1,9 @@
|
||||
// Package imports.
|
||||
import detectPassiveEvents from 'detect-passive-events';
|
||||
import { supportsPassiveEvents } from 'detect-passive-events';
|
||||
|
||||
// This will either be a passive lister options object (if passive
|
||||
// events are supported), or `false`.
|
||||
export const withPassive = detectPassiveEvents.hasSupport ? { passive: true } : false;
|
||||
export const withPassive = supportsPassiveEvents ? { passive: true } : false;
|
||||
|
||||
// Focuses the root element.
|
||||
export function focusRoot () {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import detectPassiveEvents from 'detect-passive-events';
|
||||
import { supportsPassiveEvents } from 'detect-passive-events';
|
||||
import { forceSingleColumn } from 'flavours/glitch/util/initial_state';
|
||||
|
||||
const LAYOUT_BREAKPOINT = 630;
|
||||
@ -17,7 +17,7 @@ export function isMobile(width, columns) {
|
||||
const iOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
|
||||
|
||||
let userTouching = false;
|
||||
let listenerOptions = detectPassiveEvents.hasSupport ? { passive: true } : false;
|
||||
let listenerOptions = supportsPassiveEvents ? { passive: true } : false;
|
||||
|
||||
function touchListener() {
|
||||
userTouching = true;
|
||||
|
Reference in New Issue
Block a user