Skip to content

Commit 5de5720

Browse files
author
Kim Scott
committed
Fix exp-exit-survey: Restore help-text describing Databrary; align radio buttons with tops of labels; align withdrawal text with checkbox and make normal weight.
1 parent d608f61 commit 5de5720

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

exp-player/addon/styles/components/exp-exit-survey.scss

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
.exp-physics-exit-survey .extra-info {
66
font-size: small;
7+
font-weight: normal;
78
color: rgb(95,95,95);
89
}
910

@@ -12,3 +13,8 @@
1213
border-radius: 5px;
1314
border-color: rgb(95, 95, 95);
1415
}
16+
17+
.exp-physics-exit-survey .radio-holder {
18+
position:relative;
19+
margin-top:-4px;
20+
}

exp-player/addon/templates/components/exp-exit-survey.hbs

+7-6
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,17 @@
1414
<label><i class="fa fa-star"></i> Would you like to share your video and other data from this session with authorized users of the secure data library Databrary? </label>
1515
<div class="radio">
1616
<label>
17-
{{radio-button value="no" checked=databraryShare name="databraryShare"}}
17+
<span class="radio-holder">{{radio-button value="no" checked=databraryShare name="databraryShare"}}</span>
1818
No
1919
</label>
2020
</div>
2121
<div class="radio">
2222
<label>
23-
{{radio-button value="yes" checked=databraryShare name="databraryShare"}}
23+
<span class="radio-holder">{{radio-button value="yes" checked=databraryShare name="databraryShare"}}</span>
2424
Yes
2525
</label>
2626
</div>
27+
<div class="extra-info">Only authorized researchers will have access to information in the library. Researchers who are granted access must agree to maintain confidentiality and not use information for commercial purposes. Data sharing will lead to faster progress in research on human development and behavior. If you have any questions about the data-sharing library, please visit <a href="https://nyu.databrary.org/" target="_blank">Databrary </a> or email [email protected]. </div>
2728
{{#if showValidation}}
2829
<p class="text text-danger">
2930
{{ validations.attrs.databraryShare.messages }}
@@ -33,7 +34,7 @@
3334
<label><i class="fa fa-star"></i> Use of video clips and images:</label>
3435
<div class="radio">
3536
<label>
36-
{{radio-button value="private" checked=useOfMedia name="useOfMedia"}}
37+
<span class="radio-holder">{{radio-button value="private" checked=useOfMedia name="useOfMedia"}}</span>
3738
<strong>Private:</strong> Video may only be viewed by authorized scientists
3839
{{#if (eq databraryShare 'yes')}}
3940
(researchers working on the Lookit project and authorized Databrary users).
@@ -44,13 +45,13 @@
4445
</div>
4546
<div class="radio">
4647
<label>
47-
{{radio-button value="scientific" checked=useOfMedia name="useOfMedia"}}
48+
<span class="radio-holder">{{radio-button value="scientific" checked=useOfMedia name="useOfMedia"}}</span>
4849
<strong>Scientific and educational:</strong> Video may be shared for scientific or educational purposes. For example, we might show a video clip in a talk at a scientific conference or an undergraduate class about cognitive development, or include an image or video in a scientific paper. In some circumstances, video or images may be available online, for instance as supplemental material in a scientific paper.
4950
</label>
5051
</div>
5152
<div class="radio">
5253
<label>
53-
{{radio-button value="public" checked=useOfMedia name="useOfMedia"}}
54+
<span class="radio-holder">{{radio-button value="public" checked=useOfMedia name="useOfMedia"}}</span>
5455
<strong>Publicity:</strong> Please select this option if you'd be excited about seeing your child featured on the Lookit website or in a news article about this study! Your video may be shared for publicity as well as scientific and educational purposes; it will never be used for commercial purposes. Video clips shared may be available online to the general public.
5556
</label>
5657
</div>
@@ -61,7 +62,7 @@
6162
{{/if}}
6263
<hr>
6364
<label>Withdrawal of video data </label>
64-
<label>{{input type="checkbox" checked=withdrawal name="withdrawal"}}<p class="extra-info">&nbsp;&nbsp;&nbsp; Every video helps us, even if something went wrong! However, if you need your video deleted (your spouse was discussing state secrets in the background, etc.), check here to completely withdraw your video data from this session from the study. Only your consent video will be retained and it may only be viewed by Lookit researchers; other video will be deleted without viewing.</p> </label>
65+
<label>{{input type="checkbox" checked=withdrawal name="withdrawal"}}<span class="extra-info">&nbsp;&nbsp;&nbsp; Every video helps us, even if something went wrong! However, if you need your video deleted (your spouse was discussing state secrets in the background, etc.), check here to completely withdraw your video data from this session from the study. Only your consent video will be retained and it may only be viewed by Lookit researchers; other video will be deleted without viewing.</span> </label>
6566
<hr>
6667
<div class="form-group">
6768
<label>Your feedback:</label><br> {{textarea class="input-text" value=feedback name="feedback" rows=3 cols=40}}

0 commit comments

Comments
 (0)