From 095552dbbe4147a08f7c62802b8ef61e10c1248f Mon Sep 17 00:00:00 2001 From: benmcmahon100 Date: Thu, 13 Aug 2015 21:25:31 +0100 Subject: [PATCH] Added a more specific example --- seed/challenges/basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json index 15b2df6a43..68646b02e4 100644 --- a/seed/challenges/basic-javascript.json +++ b/seed/challenges/basic-javascript.json @@ -1386,7 +1386,7 @@ "Now we can detect a win let's get the slot machine to look like it works", "We're going to use the jQuery selector $('.slot') to select all of the slots", "Once they are all selected we can use bracket notation to access each individual one like this", - "$($('.slot')[0])", + "$($('.slot')[0]).html('')", "This will grab the the first slot so that we can add the numbers we generate to them", "Use the above selector to display each number in the corresponding slot" ],