Great work! However, in the javsscript file in the bug-feature branch
it seems to me that this snippet :
btnMenu.addEventListener('change', () => { if (menuBar.style.display === 'flex') { menuBar.style.display = 'flex'; } else { menuBar.style.display = 'flex'; } }); can be improved.
Please change the event listener from change to click. I also saw the display style is the same whatever the outcome of the test. please take a look at this.
Great work! However, in the javsscript file in the bug-feature branch
it seems to me that this snippet :
btnMenu.addEventListener('change', () => { if (menuBar.style.display === 'flex') { menuBar.style.display = 'flex'; } else { menuBar.style.display = 'flex'; } });can be improved.Please change the event listener from
changetoclick. I also saw the display style is the same whatever the outcome of the test. please take a look at this.