Improve check for disabled tag for jQuery challenge

This commit is contained in:
dhcodes
2016-09-13 08:55:23 -05:00
parent 57565581fb
commit 80b2d69477

View File

@ -769,7 +769,7 @@
"tests": [
"assert($(\"#target1\") && $(\"#target1\").prop(\"disabled\"), 'message: Disable your <code>target1</code> button.');",
"assert($(\"#target2\") && !$(\"#target2\").prop(\"disabled\"), 'message: Do not disable any other buttons.');",
"assert(!code.match(/disabled>/g), 'message: Only use jQuery to add these classes to the element.');"
"assert(!code.match(/disabled[^<]*>/g), 'message: Only use jQuery to add these classes to the element.');"
],
"type": "waypoint",
"challengeType": 0,