Browse Source

RepeatClick: ignore right button down

Leopoldthecoder 7 years ago
parent
commit
0c47e6d308
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/directives/repeat-click.js

+ 2 - 1
src/directives/repeat-click.js

@@ -13,7 +13,8 @@ export default {
       interval = null;
     };
 
-    on(el, 'mousedown', () => {
+    on(el, 'mousedown', (e) => {
+      if (e.button !== 0) return;
       startTime = new Date();
       once(document, 'mouseup', clear);
       clearInterval(interval);