mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 23:15:55 +00:00
if hotkey is handled, return false
This commit is contained in:
@@ -833,7 +833,11 @@ function hotkey_handler(e) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var action = hotkey_actions[hotkey_action];
|
var action = hotkey_actions[hotkey_action];
|
||||||
if(action != null) action();
|
|
||||||
|
if (action != null) {
|
||||||
|
action();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
exception_error("hotkey_handler", e);
|
exception_error("hotkey_handler", e);
|
||||||
|
|||||||
Reference in New Issue
Block a user