An easy-to-use platform for EEG experimentation in the classroom
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ExperimentWindow

authored by

Yury Shevchenko and committed by
Teon L Brooks
63564aa1 8a9d5f13

+4 -4
+2 -2
app/components/CollectComponent/RunComponent.js
··· 12 12 import callbackHTMLDisplay from '../../utils/jspsych/plugins/callback-html-display'; 13 13 import callbackImageDisplay from '../../utils/jspsych/plugins/callback-image-display'; 14 14 import { EXPERIMENTS, DEVICES } from '../../constants/constants'; 15 - import { Labjs } from '../../utils/labjs'; 15 + import { ExperimentWindow } from '../../utils/labjs'; 16 16 17 17 import { 18 18 parseTimeline, ··· 174 174 ); 175 175 } 176 176 return ( 177 - <Labjs settings={{ 177 + <ExperimentWindow settings={{ 178 178 on_finish: (csv) => { 179 179 this.props.experimentActions.stop({data: csv}); 180 180 }
+2 -2
app/utils/labjs/index.js
··· 4 4 5 5 import task from './scripts/stroop'; 6 6 7 - class Labjs extends Component { 7 + class ExperimentWindow extends Component { 8 8 constructor(props) { 9 9 super(props); 10 10 } ··· 43 43 44 44 } 45 45 46 - export { Labjs }; 46 + export { ExperimentWindow };