18 lines
650 B
JavaScript
18 lines
650 B
JavaScript
/**
|
|
* wp-admin JavaScript features.
|
|
*
|
|
* @license https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html GNU General Public License v2.0
|
|
*/
|
|
|
|
function HostingSupport1984CopyEmailAddress(e) {
|
|
e.preventDefault();
|
|
const emailAddressTag = document.querySelector('#hosting-support-1984-address');
|
|
navigator.clipboard.writeText(emailAddressTag.value)
|
|
.catch(err => console.error("Clipboard write failed:", err));
|
|
}
|
|
|
|
const hostingSupport1984Link = document.querySelector('#hosting-support-1984-link');
|
|
if (hostingSupport1984Link) {
|
|
hostingSupport1984Link.addEventListener('click', HostingSupport1984CopyEmailAddress);
|
|
}
|