Merge pull request #2228 from dokkillo/dokkillo-2189

Dokkillo 2189
This commit is contained in:
benmcmahon100
2015-08-19 21:17:40 +01:00
3 changed files with 3 additions and 3 deletions

View File

@ -133,7 +133,7 @@
"",
" <p>Click here for <a href=\"#\">cat photos</a>.</p>",
"",
" <a href=\"#\"><img class=\"smaller-image thick-green-border\" src=\"https://bit.ly/fcc-relaxing-cat\"></a>",
" <a href=\"#\"><img class=\"smaller-image thick-green-border\" src=\"http://bit.ly/fcc-relaxing-cat\"></a>",
"",
" <p>Things cats love:</p>",
" <ul>",

View File

@ -3117,7 +3117,7 @@
"difficulty": 1.46,
"description": [
"Now let's start fresh and talk about CSS inheritance.",
"Every HTML page has <code>body</code> element.",
"Every HTML page has a <code>body</code> element.",
"We can prove that the <code>body</code> element exists here by giving it a <code>background-color</code> of black.",
"We can do this by adding <code>body { background-color: black; }</code> to our <code>style</code> element."
],

View File

@ -314,7 +314,7 @@
],
"tests": [
"assert($(\".btn-default\").length === 0, 'Remove the <code>btn-default</code> class from all of your <code>button</code> elements.')",
"assert(editor.match(/btn btn-default/g), 'Only use jQuery to add these classes to the element.')"
"assert(editor.match(/btn btn-default/g), 'Only use jQuery to remove this class from the element.')"
],
"challengeSeed": [
"fccss",