From 10f46daf57cdf8df7b2d04779b1fc6b26fa1d77b Mon Sep 17 00:00:00 2001 From: Ken McGrady Date: Thu, 12 May 2016 10:53:37 -0700 Subject: [PATCH] Move Screenshot back below --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b8b4cb4..f357c7a 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,6 @@ As always, fork and clone this repo. For this exercise, you will be creating a web page that looks like a spotlight with buttons that make changes to the light. Open up `script.js` in your editor for the directions. Once completed, try out the challenges and the bonus below. -![Screenshot of the stop bulb lit up](screenshot.png) - #### Challenge One: Button Click Wire up the controls to the left of the stoplight so that when a button is clicked, the corresponding bulb will turn on and all others will turn off. @@ -30,6 +28,8 @@ Alter your event listeners to toggle the on/off state of each bulb. All three bu * If the corresponding bulb is on when a user clicks a button, change the log message in your group event listener to say `" bulb off"` +![Screenshot of the stop bulb lit up](screenshot.png) + ## Hints * Retrieve a DOMElement with [`document.querySelector`](https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelector) or similar method