mirror of
https://gh.wpcy.net/https://github.com/elementor/hello-theme.git
synced 2026-04-24 11:45:02 +08:00
7 lines
300 B
JavaScript
7 lines
300 B
JavaScript
document.addEventListener( 'DOMContentLoaded', () => {
|
|
const links = document.querySelectorAll( 'a[href="admin.php?page=hello-elementor-ai-site-planner"], a[href="admin.php?page=hello-elementor-theme-builder"]' );
|
|
links.forEach( ( link ) => {
|
|
link.setAttribute( 'target', '_blank' );
|
|
} );
|
|
} );
|
|
|