Skip to content

Commit

Permalink
testing..
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayoola Bimpe C authored and Ayoola Bimpe C committed May 16, 2022
1 parent 8ef6e41 commit 138970b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
6 changes: 6 additions & 0 deletions docs/CaseStudy.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ captures a large quantitative dataset with limited context, consider the
<other>

</checklist>

### Supplementary Material
<checklist name="Supplementary Materials">
- [ ] provides supplemental materials such as interview guide(s), coding schemes, coding examples, decision rules, or extended chain-of-evidence tables
- [ ] triangulates across data sources, informants or researchers
</checklist>

### Desirable Attributes
<checklist name="Desirable">
Expand Down
7 changes: 6 additions & 1 deletion form_generator/js/read_standards.js
Original file line number Diff line number Diff line change
Expand Up @@ -989,6 +989,9 @@ function create_requirements_checklist(){
// create Header for Essential Requirements with an unordered list
var EssentialUL = create_requirements_heading_with_UL("Essential");

// create Header for Supplementary Requirements with an unordered list
var SupplementaryUL = create_requirements_heading_with_UL("Supplementary Materials");

// create Header for Desirable Requirements with an unordered list
var DesirableUL = create_requirements_heading_with_UL("Desirable");

Expand All @@ -998,12 +1001,14 @@ function create_requirements_checklist(){
// hide desirable and extraordinary list of requirements for One Phase Reviewer
if(role == "\"one-phase-reviewer\""){
DesirableUL.style = "padding: 0px; display:none;";
SupplementaryUL.style = "padding: 0px; display:none;";
ExtraordinaryUL.style = "padding: 0px; display:none;";
}
// hide desirable and extraordinary list of requirements for Two Phase Reviewer
else if(role == "\"two-phase-reviewer\""){
DesirableUL.style = "padding: 0px; display:none;";
ExtraordinaryUL.style = "padding: 0px; display:none;";
SupplementaryUL.style = "padding: 0px; display:none;";
ExtraordinaryUL.style = "padding: 0px; display:none;";
}

// unshift() method adds new items to the beginning of an array, and returns the new length
Expand Down

0 comments on commit 138970b

Please sign in to comment.