diff --git a/seed_data/challenges.json b/seed_data/challenges.json index 9440ef63c2e..88239564661 100644 --- a/seed_data/challenges.json +++ b/seed_data/challenges.json @@ -456,7 +456,7 @@ "video": "114686471", "challengeNumber": 36, "steps": [ - "Now that we understand some Computer Science, JavaScript programming, and how Databases work, you're ready to move on to Full-stack JavaScript!", + "Now that we understand some Computer Science and JavaScript programming, you're ready to move on to Full-stack JavaScript!", "The first step is to familiarize ourselves Node.js, the JavaScript-based web server that most full-stack JavaScript apps use.", "Code School has an excellent course on Node.js. Note that this course requires a Code School subscription, but that you can get a free two-day membership to Code School by going to https://www.codeschool.com/hall_passes/213f3fedb6b9/claim_shared. The challenges immediately following these Node.js challenges also require a Code School course, so you may want to try to complete all these challenges in one two-day period. Alternatively, you could subscribe to Code School for one month, then take your time in completing these challenges.", "When you're ready, go to http://campus.codeschool.com/courses/real-time-web-with-node-js/level/1/video/1 and complete the first chapter." diff --git a/views/resources/jquery-exercises.jade b/views/resources/jquery-exercises.jade index 6f9580f2dd5..a313019dec3 100644 --- a/views/resources/jquery-exercises.jade +++ b/views/resources/jquery-exercises.jade @@ -22,8 +22,8 @@ block content 0: "$('#next-exercise').attr('disabled', false);", 1: "$('.target').appendTo('#location2');", 2: "$('.target').css('background', 'red');", - 3: "$('.target:even').css('background', 'red');", - 4: "$('.target:nth-child(4)').css('background', 'red');", + 3: "$('.target:even').css({'background': 'red'});", + 4: "$('.target:nth-child(4)').css({'background': 'red'});", 5: "$('.target:nth-child(2)').clone().appendTo($('#location2'));", 6: "$('.target:nth-child(3)').remove();", 7: "$('#location1 input').attr('checked', 'true')",