mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01: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);
|
||||
|
||||
// Stop action from bubbling up to parents
|
||||
e.stopPropagation();
|
||||
e.cancelBubble = true;
|
||||
|
||||
return false;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user