blob: dbb910ce6c6941df46b1b030eeeacf5d9045d6a5 (
plain)
1
2
3
4
5
6
7
|
import {toOriginUrl} from '../utils/url.ts';
window.customElements.define('origin-url', class extends HTMLElement {
connectedCallback() {
this.textContent = toOriginUrl(this.getAttribute('data-url'));
}
});
|