2
0
Fork 0
mirror of https://github.com/elementor/hello-theme.git synced 2026-03-03 12:56:14 +08:00
hello-theme/modules/admin-home/assets/js/hello-elementor-menu.js

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' );
} );
} );