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.
26 lines
598 B
26 lines
598 B
export default class extends HTMLElement {
|
|
connectedCallback () {
|
|
this.clearChecked()
|
|
|
|
this.addEventListener('click', (e) => {
|
|
e.stopPropagation()
|
|
|
|
const text = this.dataset.text || this.innerText.trim()
|
|
|
|
if (navigator.clipboard) {
|
|
navigator.clipboard.writeText(text)
|
|
} else {
|
|
if (e.target.tagName !== 'INPUT') {
|
|
alert(`Clipboard not available. Make sure you're using https://\nCopy text: ${text}`)
|
|
}
|
|
}
|
|
})
|
|
}
|
|
|
|
clearChecked () {
|
|
this.querySelectorAll('input').forEach((e) => {
|
|
e.checked = false
|
|
})
|
|
}
|
|
}
|