diff --git a/src/onTap.js b/src/onTap.js index d2b3fc8..bbce3ef 100644 --- a/src/onTap.js +++ b/src/onTap.js @@ -141,7 +141,7 @@ export default class OnTap { }); if (!this.state.moving) { - const rightClick = event.which && event.which !== 1; + const rightClick = (event.which && event.which !== 1) || event.altKey || event.ctrlKey || event.metaKey; const press = this.settings.desktopPress && event.duration >= this.settings.pressThreshold; if (rightClick || press) {