| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /HostingSpaces/admin/tickwaves.co.uk/wwwroot/wp-content/themes/oceanwp/assets/src/js/theme/ |
Upload File : |
import Menu from "./menu/menu";
import MegaMenu from "./menu/mega-menu";
import Search from "./search/search";
import Footer from "./footer";
class Theme {
constructor() {
this.#start();
this.#setupEventListeners();
}
#start = () => {
this.menu = new Menu();
this.megaMenu = new MegaMenu();
this.search = new Search();
this.footer = new Footer();
};
#setupEventListeners = () => {
document.addEventListener(
"keydown",
this.#actionActive
);
};
#actionActive = (event) => {
const enterKey = event.keyCode === 13;
if ( enterKey ) {
document.querySelector('.skip-link').addEventListener('keydown', function(e) {
var target = document.getElementById('main');
target.tabIndex = -1;
target.focus();
});
}
};
}
("use script");
window.oceanwp = window.oceanwp || {};
oceanwp.theme = new Theme();