prevent keyboardshortcuts from catching events outside the main doc - e.g. the share popup

This commit is contained in:
Thomas Mueller 2012-12-12 12:55:29 +01:00
parent 72fe339c10
commit e8897c2b7e
1 changed files with 3 additions and 0 deletions

View File

@ -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 (