label to close button

This commit is contained in:
Freeplay 2023-06-20 14:41:51 -04:00
parent c05f151b1a
commit 19874ef231
2 changed files with 1 additions and 7 deletions

View File

@ -179,7 +179,6 @@ let transitionDuration = $computed(() =>
let contentClicking = false; let contentClicking = false;
// const focusedElement = document.activeElement;
function close(ev, opts: { useSendAnimation?: boolean } = {}) { function close(ev, opts: { useSendAnimation?: boolean } = {}) {
// removeEventListener("popstate", close); // removeEventListener("popstate", close);
// if (props.preferType == "dialog") { // if (props.preferType == "dialog") {
@ -193,16 +192,10 @@ function close(ev, opts: { useSendAnimation?: boolean } = {}) {
if (props.src) props.src.style.pointerEvents = "auto"; if (props.src) props.src.style.pointerEvents = "auto";
showing = false; showing = false;
emit("close"); emit("close");
// if (!props.noReturnFocus) {
// focusedElement.focus();
// }
} }
function onBgClick() { function onBgClick() {
if (contentClicking) return; if (contentClicking) return;
// if (!props.noReturnFocus) {
// focusedElement.focus();
// }
emit("click"); emit("click");
} }

View File

@ -27,6 +27,7 @@
:aria-label="i18n.t('close')" :aria-label="i18n.t('close')"
class="_button" class="_button"
@click="$emit('close')" @click="$emit('close')"
v-tooltip="i18n.ts.close"
> >
<i class="ph-x ph-bold ph-lg"></i> <i class="ph-x ph-bold ph-lg"></i>
</button> </button>