mirror of https://github.com/ElemeFE/element
RepeatClick: ignore right button down
parent
85a8ea0ade
commit
0c47e6d308
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue