Merge pull request #759 from LumenTeun/lumenteun-703

Incorrect seed in 'Use HTML5 to Require a Field' #703
pull/768/head
Quincy Larson 2015-05-30 20:11:18 -07:00
commit 5d5b1ef5f5
1 changed files with 2 additions and 3 deletions

View File

@ -1720,8 +1720,7 @@
"For example, if you wanted to make a text input field required, you can just add the word \"required\" within your <code>input</code> element use: <code>&#60;input type='text' required&#62;</code>" "For example, if you wanted to make a text input field required, you can just add the word \"required\" within your <code>input</code> element use: <code>&#60;input type='text' required&#62;</code>"
], ],
"tests": [ "tests": [
"assert($('input').prop('required'), 'Your text field should have the property of being required.')", "assert($('input').prop('required'), 'Your text field should have the property of being required.')"
"assert(new RegExp('cat photo URL').test($('input').prop('placeholder')), 'Your text field should have the placeholder text of \"cat photo URL\".')"
], ],
"challengeSeed": [ "challengeSeed": [
"<link href='http://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'>", "<link href='http://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'>",
@ -1770,7 +1769,7 @@
" <li>other cats</li>", " <li>other cats</li>",
"</ol>", "</ol>",
"<form action=\"/submit-cat-photo\">", "<form action=\"/submit-cat-photo\">",
" <input type='text'>", " <input type='text' placeholder='cat photo URL'>",
" <button type='submit'>Submit</button>", " <button type='submit'>Submit</button>",
"</form>" "</form>"
], ],