Focus last element when exiting modal

This commit is contained in:
Freeplay 2023-02-12 20:49:41 -05:00
parent 9e7bd91f88
commit 6550940625
1 changed files with 2 additions and 0 deletions

View File

@ -77,10 +77,12 @@ const type = $computed(() => {
let contentClicking = false;
const focusedElement = document.activeElement;
const close = () => {
if (props.src) props.src.style.pointerEvents = 'auto';
showing = false;
emit('close');
focusedElement.focus();
};
const onBgClick = () => {