Skip to content

Instantly share code, notes, and snippets.

@rowan-m
Created August 27, 2019 09:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rowan-m/8152e9bdf7e273fb787a18d1c6752850 to your computer and use it in GitHub Desktop.
Save rowan-m/8152e9bdf7e273fb787a18d1c6752850 to your computer and use it in GitHub Desktop.
// disconnectedCallback
if ('PointerEvent' in window) {
this.removeEventListener('pointerdown', this._onPointerdown);
} else {
this.removeEventListener('touchstart', this._onTouchstart);
this.removeEventListener('mousedown', this._onMousedown);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment