Try again on zixaphir/appchan-x#724
This commit is contained in:
parent
a0f5efdcc7
commit
05de96fd0b
@ -11994,7 +11994,7 @@
|
||||
return;
|
||||
}
|
||||
target = e.target;
|
||||
if (target.nodeName === 'embed') {
|
||||
if (target.nodeName === 'EMBED') {
|
||||
return;
|
||||
}
|
||||
if ((_ref = target.nodeName) === 'INPUT' || _ref === 'TEXTAREA') {
|
||||
|
||||
@ -12009,7 +12009,7 @@
|
||||
return;
|
||||
}
|
||||
target = e.target;
|
||||
if (target.nodeName === 'embed') {
|
||||
if (target.nodeName === 'EMBED') {
|
||||
return;
|
||||
}
|
||||
if ((_ref = target.nodeName) === 'INPUT' || _ref === 'TEXTAREA') {
|
||||
|
||||
@ -19,7 +19,7 @@ Keybinds =
|
||||
keydown: (e) ->
|
||||
return unless key = Keybinds.keyCode e
|
||||
{target} = e
|
||||
return if target.nodeName is 'embed' # Prevent keybinds from firing on /f/ embeds.
|
||||
return if target.nodeName is 'EMBED' # Prevent keybinds from firing on /f/ embeds.
|
||||
if target.nodeName in ['INPUT', 'TEXTAREA']
|
||||
return unless /(Esc|Alt|Ctrl|Meta|Shift\+\w{2,})/.test key
|
||||
unless g.VIEW is 'catalog'
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user