diff --git a/README.md b/README.md index 376efc4..04d7b13 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ 1. In the `index.html` file you'll find a form with a couple inputs: color and animation name. Go ahead and live serve this page and type in something then click "Create New Element". Try "bounce" and "red". 1. What's happening? -1. Look at the HTML file and then look at the `main.js` file to see how the values are being changed? +1. Look at the HTML file and then look at the `index.js` file to see how the values are being changed. 1. Figure it out yet? 1. On the `keyup` event, the input fields' values are being saved to the variables at the top of the JS file. When the "Create New Element" button is clicked another function is fired. What's happening there? 1. Walk through it line by line and ask yourself what's going on? How does this work?