mirror of
https://github.com/docusealco/docuseal.git
synced 2026-08-07 07:14:43 +00:00
12 lines
259 B
JavaScript
12 lines
259 B
JavaScript
export default class extends HTMLElement {
|
|
connectedCallback () {
|
|
this.addEventListener('click', () => {
|
|
document.body.append(this.template.content)
|
|
})
|
|
}
|
|
|
|
get template () {
|
|
return document.getElementById(this.dataset.templateId)
|
|
}
|
|
}
|