minor fix to challenges and jquery-exercises answer

pull/9/head^2
Michael Q Larson 2015-01-06 12:01:52 -08:00
parent ba037abe53
commit 9350fff6d5
2 changed files with 3 additions and 3 deletions

View File

@ -456,7 +456,7 @@
"video": "114686471", "video": "114686471",
"challengeNumber": 36, "challengeNumber": 36,
"steps": [ "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.", "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 <a href='https://www.codeschool.com/hall_passes/213f3fedb6b9/claim_shared' target='_blank'>https://www.codeschool.com/hall_passes/213f3fedb6b9/claim_shared</a>. 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.", "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 <a href='https://www.codeschool.com/hall_passes/213f3fedb6b9/claim_shared' target='_blank'>https://www.codeschool.com/hall_passes/213f3fedb6b9/claim_shared</a>. 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 <a href='http://campus.codeschool.com/courses/real-time-web-with-node-js/level/1/video/1' target='_blank'>http://campus.codeschool.com/courses/real-time-web-with-node-js/level/1/video/1</a> and complete the first chapter." "When you're ready, go to <a href='http://campus.codeschool.com/courses/real-time-web-with-node-js/level/1/video/1' target='_blank'>http://campus.codeschool.com/courses/real-time-web-with-node-js/level/1/video/1</a> and complete the first chapter."

View File

@ -22,8 +22,8 @@ block content
0: "$('#next-exercise').attr('disabled', false);", 0: "$('#next-exercise').attr('disabled', false);",
1: "$('.target').appendTo('#location2');", 1: "$('.target').appendTo('#location2');",
2: "$('.target').css('background', 'red');", 2: "$('.target').css('background', 'red');",
3: "$('.target:even').css('background', 'red');", 3: "$('.target:even').css({'background': 'red'});",
4: "$('.target:nth-child(4)').css('background', 'red');", 4: "$('.target:nth-child(4)').css({'background': 'red'});",
5: "$('.target:nth-child(2)').clone().appendTo($('#location2'));", 5: "$('.target:nth-child(2)').clone().appendTo($('#location2'));",
6: "$('.target:nth-child(3)').remove();", 6: "$('.target:nth-child(3)').remove();",
7: "$('#location1 input').attr('checked', 'true')", 7: "$('#location1 input').attr('checked', 'true')",