mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
Fixed bug with Ctrl-Key no longer working
This commit is contained in:
parent
5f4341225a
commit
3a23d4bb21
@ -89,7 +89,7 @@ if (typeof Array.prototype.indexOf == "undefined")
|
||||
function egwGetShiftState(e)
|
||||
{
|
||||
var state = EGW_AO_SHIFT_STATE_NONE;
|
||||
state = egwSetBit(state, EGW_AO_SHIFT_STATE_MULTI, e.ctrkKey || e.metaKey);
|
||||
state = egwSetBit(state, EGW_AO_SHIFT_STATE_MULTI, e.ctrlKey || e.metaKey);
|
||||
state = egwSetBit(state, EGW_AO_SHIFT_STATE_BLOCK, e.shiftKey);
|
||||
|
||||
return state;
|
||||
|
Loading…
Reference in New Issue
Block a user