From d2ef354f60d19e3ee5e1096e900e165f6d07d798 Mon Sep 17 00:00:00 2001 From: Branden Byers Date: Mon, 12 Jan 2015 13:29:41 -0600 Subject: [PATCH] Edit wording of jquery exercises Removed 'the' from some of the questions for consistency. The rule applied: either use "the element" or only "" when not following with "element." Alternatively, instead of removing "the," you could instead add "element" to the end of each reference to a target. But as it was, the wording was inconsistent. Also removed extra "from." --- views/resources/jquery-exercises.jade | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/views/resources/jquery-exercises.jade b/views/resources/jquery-exercises.jade index a313019dec..e3edfd2604 100644 --- a/views/resources/jquery-exercises.jade +++ b/views/resources/jquery-exercises.jade @@ -7,12 +7,12 @@ block content 1: "Move the .target element from #location1 to #location2.", 2: "Change the background color of .target to red.", 3: "Change the background color of the even-numbered targets to red.", - 4: "Change the background color of the target4 to red.", - 5: "Clone the target2 in #location1 so that it also exists in #location2.", - 6: "Remove the target3 from element from #location1.", + 4: "Change the background color of target4 to red.", + 5: "Clone target2 in #location1 so that it also exists in #location2.", + 6: "Remove the target3 element from #location1.", 7: "Check the following checkboxes using jQuery.", 8: "Make the text input field read-only.", - 9: "Select the target2 option in the select box.", + 9: "Select target2 option in the select box.", 10: "Add the following css classes to .target: 'animated' and 'hinge'.", 11: "Use jQuery to read the data of .target.", 12: "Use 'length' to count the number of child elements in #location1, then display that value in #location2.",