Created
August 8, 2019 14:06
-
-
Save matthew-gerstman/a33570268faebad6015ca5b4aaa04a84 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
let lastFocused = []; | |
setInterval(() => { | |
const focused = document.querySelector(':focus'); | |
if (focused && lastFocused[lastFocused.length - 1] != focused) { | |
lastFocused.push(focused); | |
} | |
}, 100) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment