mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-24 06:33:11 +02:00
Use && to eliminate if-statement (#3558)
This commit is contained in:
parent
54cb94db1d
commit
e87b9cc019
1 changed files with 1 additions and 5 deletions
|
@ -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 a new issue