mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 07:35:57 +09:00
Use && to eliminate if-statement (#3558)
This commit is contained in:
parent
54cb94db1d
commit
e87b9cc019
@ -77,11 +77,7 @@ export default {
|
|||||||
const matched = match(e, action.patterns);
|
const matched = match(e, action.patterns);
|
||||||
|
|
||||||
if (matched) {
|
if (matched) {
|
||||||
if (el._hotkey_global) {
|
if (el._hotkey_global && match(e, targetReservedKeys)) return;
|
||||||
if (match(e, targetReservedKeys)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
|
Loading…
Reference in New Issue
Block a user