Created
June 27, 2019 10:25
-
-
Save DrewDahlman/f7695560d2ada7496073280f515cffa2 to your computer and use it in GitHub Desktop.
This file contains 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
.no-focus-outline:focus { | |
outline: none; | |
} |
This file contains 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
document.body.addEventListener("keyup", event => { | |
if (event.keyCode === 9) { | |
let _$elements = document.querySelectorAll(".no-focus-outline"); | |
for (let i = 0; i < _$elements.length; i++) { | |
_$elements[i].classList.remove("no-focus-outline"); | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment