[refactor] remove logging

This commit is contained in:
Kuldeep M 2019-07-11 11:22:24 +01:00
parent 46bccd849a
commit 4347abb4bd

View File

@ -109,13 +109,11 @@ var menu = (function() {
menu.tabIndex = 1;
menu.querySelectorAll("[tabindex]").forEach(function(arrayItem, index) {
arrayItem.tabIndex = 1;
console.log(arrayItem);
});
} else {
menu.tabIndex = -1;
menu.querySelectorAll("[tabindex]").forEach(function(arrayItem, index) {
arrayItem.tabIndex = -1;
console.log(arrayItem);
});
};
};