Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions 10 - Hold Shift and Check Checkboxes/index-FINISHED.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<!--
The following is a common layout you would see in an email client.

When a user clicks a checkbox, holds Shift, and then clicks another checkbox a few rows down, all the checkboxes inbetween those two checkboxes should be checked.
When a user clicks a checkbox, holds Shift, and then clicks another checkbox a few rows down, all the checkboxes in-between those two checkboxes should be checked.

-->
<div class="inbox">
Expand All @@ -76,7 +76,7 @@
</div>
<div class="item">
<input type="checkbox">
<p>Everything inbetween should also be set to checked</p>
<p>Everything in between should also be set to checked</p>
</div>
<div class="item">
<input type="checkbox">
Expand Down Expand Up @@ -112,7 +112,7 @@
console.log(checkbox);
if (checkbox === this || checkbox === lastChecked) {
inBetween = !inBetween;
console.log('Starting to check them inbetween!');
console.log('Starting to check them in between!');
}

if (inBetween) {
Expand Down