From 0971cf2947ce7c768032b9781ea943ee76972144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Floty=C5=84ski?= Date: Tue, 4 Aug 2015 15:00:22 +0200 Subject: [PATCH 1/3] Small Fix of Bootstrap waypoint challenge - Issue 1502 Changed second check for second class - 'btn-default' --- challenges/bootstrap.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/bootstrap.json b/challenges/bootstrap.json index c0b4014f93..8a796f709a 100644 --- a/challenges/bootstrap.json +++ b/challenges/bootstrap.json @@ -1743,7 +1743,7 @@ ], "tests": [ "assert($('.btn').length > 5, 'Apply the \"btn\" class to each of your button elements.')", - "assert($('.btn').length > 5, 'Apply the \"btn-default\" class to each of your button elements.')" + "assert($('.btn-default').length > 5, 'Apply the \"btn-default\" class to each of your button elements.')" ], "challengeSeed": [ "
", From c8b712f73c4139b8a9f83cbcfc13c046a88bc707 Mon Sep 17 00:00:00 2001 From: Nic Galluzzo Date: Tue, 4 Aug 2015 08:54:21 -0700 Subject: [PATCH 2/3] Update bootstrap.json --- challenges/bootstrap.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/bootstrap.json b/challenges/bootstrap.json index c0b4014f93..32b069f30d 100644 --- a/challenges/bootstrap.json +++ b/challenges/bootstrap.json @@ -12,7 +12,7 @@ "Bootstrap will figure out how wide your screen is and respond by resizing your HTML elements - hence the name Responsive Design.", "With responsive design, there is no need to design a mobile version of your website. It will look good on devices with screens of any width.", "You can add Bootstrap to any app just by including it with <link rel='stylesheet' href='//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css'/> at the top of your HTML. But we've gone ahead and automatically added it to your Cat Photo App for you.", - "To get started, we should nest all of our HTML in a div element with the class \"fluid-container\"." + "To get started, we should nest all of our HTML in a div element with the class \"container-fluid\"." ], "tests": [ "assert($('div').hasClass('container-fluid'), 'Your div element should have the class \"row\"')", From 5d370c87b06dcd3b1e2b5c6c533e9acd4d586d94 Mon Sep 17 00:00:00 2001 From: Ben Date: Tue, 4 Aug 2015 14:03:19 -0500 Subject: [PATCH 3/3] Update bootstrap.json fixed typo (misspelled 'container') --- challenges/bootstrap.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/bootstrap.json b/challenges/bootstrap.json index c0b4014f93..a54c808017 100644 --- a/challenges/bootstrap.json +++ b/challenges/bootstrap.json @@ -1566,7 +1566,7 @@ "difficulty": 2.18, "description": [ "Now let's make sure all the content on your page is mobile-responsive.", - "Let's nest your h3 element within a div element with the class \"containter-fluid\"." + "Let's nest your h3 element within a div element with the class \"container-fluid\"." ], "tests": [ "assert($('div').hasClass('container-fluid'), 'Your div element should have the class \"container-fluid\"')",