fix(curriculum): Additional clarification in hint (#44746)

pull/44751/head
Etkesmeci 2022-01-11 17:32:37 +03:00 committed by GitHub
parent e26e503efc
commit 43f970aa3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ Your checkbox should still have an `id` attribute with the value `loving`. You m
assert($('input[type="checkbox"]')[0].id === 'loving');
```
The text ` Loving` should no longer be located directly to the right of your checkbox. It should be wrapped in a `label` element.
The text ` Loving` should no longer be located directly to the right of your checkbox. It should be wrapped in a `label` element. Make sure there is a space between the two elements.
```js
const checkboxInputElem = $('input[type="checkbox"]')[0];