mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Add alt key hook to keyboard event handler (just in case :-)
This commit is contained in:
parent
0e35b65afd
commit
a76f48f50b
@ -23,8 +23,9 @@ RED.keyboard = function() {
|
|||||||
var handler = handlers[d3.event.keyCode];
|
var handler = handlers[d3.event.keyCode];
|
||||||
if (handler && handler.ondown) {
|
if (handler && handler.ondown) {
|
||||||
if (!handler.modifiers ||
|
if (!handler.modifiers ||
|
||||||
((!handler.modifiers.shift || d3.event.shiftKey)&&
|
((!handler.modifiers.shift || d3.event.shiftKey) &&
|
||||||
(!handler.modifiers.ctrl || d3.event.ctrlKey))) {
|
(!handler.modifiers.ctrl || d3.event.ctrlKey ) &&
|
||||||
|
(!handler.modifiers.alt || d3.event.altKey ) )) {
|
||||||
handler.ondown();
|
handler.ondown();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -34,8 +35,9 @@ RED.keyboard = function() {
|
|||||||
var handler = handlers[d3.event.keyCode];
|
var handler = handlers[d3.event.keyCode];
|
||||||
if (handler && handler.onup) {
|
if (handler && handler.onup) {
|
||||||
if (!handler.modifiers ||
|
if (!handler.modifiers ||
|
||||||
((!handler.modifiers.shift || d3.event.shiftKey)&&
|
((!handler.modifiers.shift || d3.event.shiftKey) &&
|
||||||
(!handler.modifiers.ctrl || d3.event.ctrlKey))) {
|
(!handler.modifiers.ctrl || d3.event.ctrlKey ) &&
|
||||||
|
(!handler.modifiers.alt || d3.event.altKey ) )) {
|
||||||
handler.onup();
|
handler.onup();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user