-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix withdrawal question value in data and logic for enabling/disablin…
…g the other video-related questions
- Loading branch information
1 parent
1d428f2
commit a69de96
Showing
2 changed files
with
23 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
}, | ||
{ | ||
"description": "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 [Databrary](https://nyu.databrary.org/) or email [email protected].", | ||
"enableIf": "(!{withdrawal}) or ({withdrawal} empty)", | ||
"enableIf": "({withdrawal} empty) or ({withdrawal.length} = 0)", | ||
"isRequired": true, | ||
"name": "databraryShare", | ||
"title": "Would you like to share your video and other data from this session with authorized users of the secure data library Databrary?", | ||
|
@@ -36,14 +36,15 @@ | |
} | ||
], | ||
"description": "", | ||
"enableIf": "(!{withdrawal}) or ({withdrawal} empty)", | ||
"enableIf": "({withdrawal} empty) or ({withdrawal.length} = 0)", | ||
"isRequired": true, | ||
"name": "useOfMedia", | ||
"title": "Use of video clips and images:", | ||
"type": "radiogroup" | ||
}, | ||
{ | ||
"choices": [], | ||
"defaultValue": [], | ||
"isRequired": false, | ||
"name": "withdrawal", | ||
"title": "Withdrawal of video data", | ||
|