diff --git a/seed/challenges/future-jquery-ajax-json.json b/seed/challenges/future-jquery-ajax-json.json
index b50add03fb..f2ed7d7d27 100644
--- a/seed/challenges/future-jquery-ajax-json.json
+++ b/seed/challenges/future-jquery-ajax-json.json
@@ -18,6 +18,8 @@
"assert(editor.match(/\\n\\s+?\\}\\);/g), 'Close your $(document).ready(function() {
function with \\}\\);
.')"
],
"challengeSeed": [
+ "",
+ "",
"
",
"",
"
",
@@ -65,6 +67,7 @@
"",
" });",
"fcces",
+ "",
"
",
"",
"
",
@@ -112,6 +115,7 @@
" $('img').addClass('animated bounce');",
" });",
"fcces",
+ "",
"
",
"",
"
",
@@ -159,6 +163,7 @@
" $('.btn').addClass('animated shake');",
" });",
"fcces",
+ "",
"
",
"",
"
",
@@ -207,6 +212,7 @@
" $('.btn').addClass('animated shake');",
" });",
"fcces",
+ "",
"
",
"",
"
",
@@ -256,6 +262,7 @@
" $('#cat-photo-form').addClass('animated pulse');",
" });",
"fcces",
+ "",
"
",
"",
"
",
@@ -303,6 +310,7 @@
" $('#cat-photo-form').css('background-color', 'gray');",
" });",
"fcces",
+ "",
"
",
"",
"
",
@@ -351,6 +359,7 @@
" $('#submit-button').prop('disabled', 'true');",
" });",
"fcces",
+ "",
"
",
"",
"
",
@@ -382,48 +391,41 @@
{
"id": "bad87fee1348bd9aed608826",
- "name": "Waypoint: Move an Element Using jQuery",
- "dashedName": "waypoint-move-an-element-using-jquery",
+ "name": "Waypoint: Use appendTo to Move Elements with jQuery",
+ "dashedName": "waypoint-use-appendto-to-move-elements-with-jquery",
"difficulty": 0.079,
"description": [
-
+ "$('.btn').appendTo('#right-well')"
],
"tests": [
-
+ "assert($('#left-well').children().length === 0, 'Your left well should not have any buttons inside it.')",
+ "assert($('#right-well').children().length === 6, 'Your right well should have all 6 buttons inside it.')"
],
"challengeSeed": [
"fccss",
" $(document).ready(function() {",
- " $('#cat-photo-form').css('background-color', 'gray');",
- " $('#submit-button').prop('disabled', 'true');",
- " $('img').remove();",
+ "",
" });",
"fcces",
- "
",
- "",
- "
",
+ "",
"