mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-16 15:07:36 -07:00
23 lines
549 B
TypeScript
23 lines
549 B
TypeScript
export function focusPrev(el: Element | null, self = false) {
|
|
if (el == null) return;
|
|
if (!self) el = el.previousElementSibling;
|
|
if (el) {
|
|
if (el.hasAttribute('tabindex')) {
|
|
(el as HTMLElement).focus();
|
|
} else {
|
|
focusPrev(el.previousElementSibling, true);
|
|
}
|
|
}
|
|
}
|
|
|
|
export function focusNext(el: Element | null, self = false) {
|
|
if (el == null) return;
|
|
if (!self) el = el.nextElementSibling;
|
|
if (el) {
|
|
if (el.hasAttribute('tabindex')) {
|
|
(el as HTMLElement).focus();
|
|
} else {
|
|
focusPrev(el.nextElementSibling, true);
|
|
}
|
|
}
|
|
}
|