Merge pull request #1706 from kurzninja/patch-3

Fix for incorrect RGB test value
pull/18182/head
Berkeley Martinez 2015-08-10 16:27:15 -07:00
commit 784572009e
1 changed files with 1 additions and 1 deletions

View File

@ -674,7 +674,7 @@
"Here's an example of how you would use the <code>children()</code> function: <code>$('#left-well').children().css('color', 'blue')</code>"
],
"tests": [
"assert($('#target6').css('color') === 'rgb(0, 0, 255)', 'Your \"target6\" element should have green text.')",
"assert($('#target6').css('color') === 'rgb(0, 255, 0), 'Your \"target6\" element should have green text.')",
"assert(!editor.match(/\\.children\\(\\)\\.css/g), 'You should use the <code>children()</code> function to modify these elements.')",
"assert(!editor.match(/<div class=\\'well\\' id=\\'right-well\\'>/g), 'Only use jQuery to add these classes to the element.')"
],