File tree 1 file changed +12
-2
lines changed
1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -30,10 +30,20 @@ jQuery(function($) {
30
30
// Uncomment the following 2 lines to display current numbers on screen, given that the page includes two div elements with ids 'left' and 'percent'.
31
31
// $('#left').text(leftPos);
32
32
// $('#percent').text(overlapPercentage + '%');
33
- // Qualtrics only: Uncomment the following 2 lines to store the values as Qualtrics embeddedData.
34
- // Notice that these embedded data has to be added explicitly in the survey flow in order for them to show up in your data exports.
33
+
34
+ // Qualtrics only: Uncomment the following 2 lines to store the values as Qualtrics embeddedData
35
+ // Notice that these embedded data has to be added explicitly in the survey flow in order for them to show up in your data exports.
35
36
// Qualtrics.SurveyEngine.setEmbeddedData(id + "-distance", leftPos);
36
37
// Qualtrics.SurveyEngine.setEmbeddedData(id + "-overlap", overlapPercentage);
38
+
39
+ // Qualtrics only: Uncomment the following lines into the survey flow when using multiple measures of self-continuity to send multiple data
40
+ // Otherwise each measure will be sent through same embedded data code and overwritten
41
+ // Object.entries(circlesData).forEach(([columnId, value]) => {
42
+ // console.log("we want to send ", value, " to id ", columnId)
43
+ // Qualtrics.SurveyEngine.setEmbeddedData(columnId, value);
44
+ //})
45
+
46
+
37
47
}
38
48
} ) ;
39
49
} ) ;
You can’t perform that action at this time.
0 commit comments