From 7a1058f84f52e044f031a2be747696f9163935ae Mon Sep 17 00:00:00 2001 From: Mitch Date: Tue, 17 Nov 2015 20:55:13 -0500 Subject: [PATCH] Changed single quotes to double for consistency Though in JS there's no difference, all the prior exercises use double quotes, so using a pair of single quotes suddenly and without explanation could be confusing. If this isn't addressed in the 'basic javascript' portion (I haven't gotten there yet), it should be --- seed/challenges/jquery.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/jquery.json b/seed/challenges/jquery.json index e66108d6d4..b6a4616b27 100644 --- a/seed/challenges/jquery.json +++ b/seed/challenges/jquery.json @@ -849,7 +849,7 @@ "description": [ "We're done playing with our jQuery playground. Let's tear it down!", "jQuery can target the body element as well.", - "Here's how we would make the entire body fade out: $('body').addClass('animated fadeOut')", + "Here's how we would make the entire body fade out: $(\"body\").addClass(\"animated fadeOut\")", "But let's do something more dramatic. Add the classes animated and hinge to your body element." ], "tests": [