From 54e5fca22d0b47caad54b199f7fe8214e1599322 Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra Date: Wed, 20 Jan 2016 22:46:42 +0530 Subject: [PATCH] Add additional instruction to Give Each Element a Unique ID This commit adds an addtional instruction to the challenge, specifing to keep `target1` to `target3` in the `#left-well` and `target4` to `target6` in the `#right-well` respectively. Tested locally. closes #6331 --- .../01-front-end-development-certification/bootstrap.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/seed/challenges/01-front-end-development-certification/bootstrap.json b/seed/challenges/01-front-end-development-certification/bootstrap.json index b68b2663b2a..9f35418c0c8 100644 --- a/seed/challenges/01-front-end-development-certification/bootstrap.json +++ b/seed/challenges/01-front-end-development-certification/bootstrap.json @@ -2144,7 +2144,8 @@ "title": "Give Each Element a Unique ID", "description": [ "We will also want to be able to use jQuery to target each button by its unique id.", - "Give each of your buttons a unique id like, starting with target1 and ending with target6." + "Give each of your buttons a unique id, starting with target1 and ending with target6.", + "Make sure that target1 to target3 are in #left-well, and target4 to target6 are in #right-well." ], "tests": [ "assert($(\"#left-well\").children(\"#target1\") && $(\"#left-well\").children(\"#target1\").length > 0, 'message: One button element should have the id target1.');",