mirror of
https://github.com/stoatchat/for-legacy-web.git
synced 2026-03-07 17:35:28 +00:00
Modals: Allow all modals to be closed by ESC (permitting). Fix: Handle closing DMs properly. Stop propagation too.
6 lines
168 B
TypeScript
6 lines
168 B
TypeScript
export const stopPropagation = (ev: JSX.TargetedMouseEvent<HTMLDivElement>, _consume?: any) => {
|
|
ev.preventDefault();
|
|
ev.stopPropagation();
|
|
return true;
|
|
};
|