This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const body = document.body; | |
const tabFocusClass = 'is-keyfocus'; | |
const CODE_TAB = 9; | |
let focusState = false; | |
/** | |
* Handle logic, when onTabKeyPress fired at first. | |
* Then it changes state. | |
*/ | |
function onFocusInHandler() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Custom nav walker | |
* | |
* Custom nav walker to assign icons to menu items. | |
*/ | |
class FA_Icon_Walker extends Walker_Nav_Menu | |
{ | |
/** |