6 lines
No EOL
223 B
JavaScript
6 lines
No EOL
223 B
JavaScript
let url = document.getElementById('siteURL')
|
|
let postURL = `${location.protocol}//${location.host}/api/update`
|
|
url.innerText = postURL
|
|
url.addEventListener('click', function() {
|
|
navigator.clipboard.writeText(postURL)
|
|
}) |