mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 09:13:19 -04:00
Merge pull request #842 from owncloud/restrict_keyboard_shortcuts
prevent keyboardshortcuts from catching events outside the main doc - e....
This commit is contained in:
commit
d085fdf8ea
1 changed files with 3 additions and 0 deletions
|
|
@ -127,6 +127,9 @@ var Files = Files || {};
|
|||
}
|
||||
Files.bindKeyboardShortcuts = function(document, $) {
|
||||
$(document).keydown(function(event) { //check for modifier keys
|
||||
if(!$(event.target).is('body')) {
|
||||
return;
|
||||
}
|
||||
var preventDefault = false;
|
||||
if ($.inArray(event.keyCode, keys) === -1) keys.push(event.keyCode);
|
||||
if (
|
||||
|
|
|
|||
Loading…
Reference in a new issue