mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
466 B
21 lines
466 B
export default class extends HTMLElement {
|
|
connectedCallback () {
|
|
this.button.addEventListener('click', () => {
|
|
this.fromInput.value = this.dataset.fromValue || ''
|
|
this.toInput.value = this.dataset.toValue || ''
|
|
})
|
|
}
|
|
|
|
get button () {
|
|
return this.querySelector('button')
|
|
}
|
|
|
|
get fromInput () {
|
|
return document.getElementById(this.dataset.fromId)
|
|
}
|
|
|
|
get toInput () {
|
|
return document.getElementById(this.dataset.toId)
|
|
}
|
|
}
|