1
0
mirror of https://github.com/psychopy/psychojs.git synced 2025-05-12 16:48:10 +00:00

Merge pull request #247 from thewhodidthis/bf#134--fullrandom

data/TrialHandler: add FULLRANDOM alias to mirror PP output
This commit is contained in:
Alain Pitiot 2021-02-18 14:17:19 +01:00 committed by GitHub
commit ab2e1608a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -673,5 +673,10 @@ TrialHandler.Method = {
/** /**
* Conditions are fully randomised across all repeats. * Conditions are fully randomised across all repeats.
*/ */
FULL_RANDOM: Symbol.for('FULL_RANDOM') FULL_RANDOM: Symbol.for('FULL_RANDOM'),
/**
* Same as above, but named to reflect PsychoPy boileplate.
*/
FULLRANDOM: Symbol.for('FULL_RANDOM')
}; };