mirror of
https://github.com/docusealco/docuseal.git
synced 2026-08-07 07:14:43 +00:00
8 lines
197 B
JavaScript
8 lines
197 B
JavaScript
export default class extends HTMLElement {
|
|
connectedCallback () {
|
|
if (this.dataset.inputId) {
|
|
document.getElementById(this.dataset.inputId).value = document.location.origin
|
|
}
|
|
}
|
|
}
|