This also means that I will need to put the field list
in my ExpInfo
dictionary, which will appear in my diag box. I would rather not to have subjects mess with that…Could I just create a brand new dictionary just with list
? e.g.,
let listInfo = {'list: ['list1', 'list2']};
and then refer to in both the URL and in the trialHandler object of my loop:
...
loopTrial = new TrialHandler({
...
trialList: listInfo['list']+'.csv',
...
};