Initial commit

This commit is contained in:
2025-08-11 11:41:25 +00:00
commit bd6c375ca7
19 changed files with 865 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
/**
* 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
);
}