mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-20 09:58:04 +02:00
Stop default actions from bubbling after they are handled, fixes parent default action firing after child default action has been handled
This commit is contained in:
parent
6bd93b25fb
commit
5b972ea11f
@ -144,6 +144,10 @@ function egwPopupActionImplementation()
|
|||||||
|
|
||||||
_callback.call(_context, "default", ai);
|
_callback.call(_context, "default", ai);
|
||||||
|
|
||||||
|
// Stop action from bubbling up to parents
|
||||||
|
e.stopPropagation();
|
||||||
|
e.cancelBubble = true;
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user