mirror of
https://github.com/elementor/hello-theme.git
synced 2026-03-03 12:56:14 +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' );
|
|
} );
|
|
} );
|
|
|