mirror of
https://github.com/docusealco/docuseal.git
synced 2026-08-07 07:14:43 +00:00
10 lines
297 B
JavaScript
10 lines
297 B
JavaScript
export default class extends HTMLElement {
|
|
connectedCallback () {
|
|
this.querySelectorAll('a').forEach((link) => {
|
|
if (document.location.pathname.startsWith(link.pathname) && !link.getAttribute('href').startsWith('http')) {
|
|
link.classList.add('bg-base-300')
|
|
}
|
|
})
|
|
}
|
|
}
|