-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbena_amp_modified.js
41 lines (35 loc) · 1.42 KB
/
bena_amp_modified.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
define(['pipAPI', 'https://navmayan.github.io/indirect_tasks_qltrcs/bena_AMP_parameters_modified.js'], function(APIConstructor, ampExtension){
//Adapted from Bengayev, E. (2020, July 27). Running Project Implicit’s AMP from Qualtrics [Blog post]. Retrieved from https://minnojs.github.io/minnojs-blog/qualtrics-amp/
var API = new APIConstructor();
return ampExtension({
primeCats : [
{
nameForFeedback : 'Francis West', //Will be used in the user feedback
nameForLogging : 'francis_target', //Will be used in the logging
//An array of all media objects for this category.
mediaArray : [
{image : 'Francis.jpg'}]
},
{
nameForFeedback : 'Control', //Will be used in the user feedback
nameForLogging : 'control', //Will be used in the logging
//An array of all media objects for this category.
mediaArray : [
{image : 'Control1.jpg'},
{image : 'Control2.jpg'},
{image : 'Control3.jpg'},
{image : 'Control4.jpg'},
{image : 'Control5.jpg'}]
}
],
examplePrimeStimulus :
{
nameForLogging : 'training', //Will be used in the logging
//An array of all media objects for this category.
mediaArray : [{image : 'Control1.jpg'}, {image : 'Control2.jpg'}, {image : 'Control3.jpg'}, {image : 'Control4.jpg'}, {image : 'Control5.jpg'}]
},
base_url : {//Where are your images at?
image : 'https://jeremybena.github.io/APR_AMP/images'
}
});
});