- Replace
<your_account>
with your Github username in the link - Follow this instructions
- Run
npm run test
command to test your code; - Run
npm run test:only -- -n
to run fast test ignoring linter; - Run
npm run test:only -- -l
to run fast test with additional info in console ignoring linter.
- Run
Create an image gallery where the main image changes by the click on a thumbnail.
Requirements:
- A click can be either on a small
img
image or ona
outside of it.event.target
will be, respectively, eitherimg
ora
.
Notes:
- Use event delegation.
- You must only modify the file
src/scripts/main.js
.