Browse Source

Set touchstart listener to 'passive', remove 'once' (#5011)

pull/4/head
Nolan Lawson 6 years ago
committed by Eugen Rochko
parent
commit
e5c65b3067
1 changed files with 9 additions and 2 deletions
  1. +9
    -2
      app/javascript/mastodon/is_mobile.js

+ 9
- 2
app/javascript/mastodon/is_mobile.js View File

@ -1,3 +1,5 @@
import detectPassiveEvents from 'detect-passive-events';
const LAYOUT_BREAKPOINT = 1024;
export function isMobile(width) {
@ -5,11 +7,16 @@ export function isMobile(width) {
};
const iOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
let userTouching = false;
let listenerOptions = detectPassiveEvents.hasSupport ? { passive: true } : false;
window.addEventListener('touchstart', () => {
function touchListener() {
userTouching = true;
}, { once: true });
window.removeEventListener('touchstart', touchListener, listenerOptions);
}
window.addEventListener('touchstart', touchListener, listenerOptions);
export function isUserTouching() {
return userTouching;

Loading…
Cancel
Save