Guest User

JS

a guest
Nov 1st, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var MenuFocusModule = {
  2.     elementsFocusable: function () {
  3.         var navigationElementList = document.querySelector('.navigation-list-element');
  4.         [].slice.call(navigationElementList).forEach(function (el) {
  5.             el.firstChild.addEventListener('onFocus', function () {
  6.                 el.parentElement.style.borderColor = '#ed1c24';
  7.             });
  8.         });
  9.     }
  10.     , init: function () {
  11.         elementsFocusable();
  12.     }
  13. }
Add Comment
Please, Sign In to add comment