Guest User

Untitled

a guest
Oct 16th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. module.exports = function(){
  2.  
  3. const keys = [9,38,40,39,13];
  4.  
  5. var allowAccessibility = function(event) {
  6. document.body.classList[keys.includes(event.keyCode) ? 'add' : 'remove']( 'user-focus' );
  7. }
  8.  
  9. "keydown mousedown".split(" ").forEach(function(e){
  10. window.addEventListener(e, allowAccessibility, false);
  11. });
  12. }
Add Comment
Please, Sign In to add comment