20 lines
562 B
JavaScript
20 lines
562 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();
|
|
var emailAddressTag = document.querySelector( '#hosting-support-1984-address' );
|
|
emailAddressTag.select();
|
|
document.execCommand( 'copy' );
|
|
}
|
|
|
|
if (document.querySelector( '#hosting-support-1984-link' )) {
|
|
document.querySelector( '#hosting-support-1984-link' ).addEventListener(
|
|
'click',
|
|
HostingSupport1984CopyEmailAddress
|
|
);
|
|
}
|