diff --git a/subjects/DPxAI/first-wink/README.md b/subjects/DPxAI/first-wink/README.md index 91417e08d..a615656f5 100644 --- a/subjects/DPxAI/first-wink/README.md +++ b/subjects/DPxAI/first-wink/README.md @@ -93,13 +93,14 @@ const handleClick = (event) => { } else { // If the eye is open, close it and update the button text -} + } + // Toggle the 'eye-closed' class on the 'eye-left' div +}; + // register the event: button.addEventListener('click', handleClick) // here we ask the button to call our `handleClick` function // on the 'click' event, so every time it's clicked -}; - ``` **`Prompt Examples:`**