mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-24 15:48:55 +01:00
backport of r38639: fixed bug with ctrl-key no longer working
This commit is contained in:
parent
256740baf5
commit
e8cb25e111
@ -89,7 +89,7 @@ if (typeof Array.prototype.indexOf == "undefined")
|
|||||||
function egwGetShiftState(e)
|
function egwGetShiftState(e)
|
||||||
{
|
{
|
||||||
var state = EGW_AO_SHIFT_STATE_NONE;
|
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);
|
state = egwSetBit(state, EGW_AO_SHIFT_STATE_BLOCK, e.shiftKey);
|
||||||
|
|
||||||
return state;
|
return state;
|
||||||
|
Loading…
Reference in New Issue
Block a user