Skip to content

Commit

Permalink
clearing console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
u-dani committed Feb 10, 2024
1 parent f6904ea commit 77b6615
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,6 @@ toggleMenuButton === null || toggleMenuButton === void 0 ? void 0 : toggleMenuBu
window.onload = () => {
const selectArr = document.querySelectorAll('.js-select-language');
selectArr.forEach(select => {
console.log(select);
languagesInSelect({ selectElement: select });
});
};
1 change: 0 additions & 1 deletion ts/script.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,6 @@ toggleMenuButton?.addEventListener('click', toggleDropdownMenu);
window.onload = () => {
const selectArr: NodeListOf<HTMLSelectElement> = document.querySelectorAll('.js-select-language');
selectArr.forEach( select => {
console.log(select)
languagesInSelect({ selectElement: select });
});
}

0 comments on commit 77b6615

Please sign in to comment.