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.

Addressing small concerns

+12 -12
+8 -10
app/components/DesignComponent/index.js
··· 86 86 <Header as="h1">The N170 ERP</Header> 87 87 </Grid.Column> 88 88 <Grid.Column stretched width={6} verticalAlign="middle"> 89 - <Segment as="p" basic> 90 - The N170 is a large negative event-related potential (ERP) 91 - component that occurs after the detection of faces, but not 89 + <Segment basic> 90 + <p>The N170 is a large negative event-related potential (ERP) 91 + component that occurs around 170ms after the detection of faces, but not 92 92 objects, scrambled faces, or other body parts such as hands. The 93 - N170 occurs around 170ms after face perception and is most 94 - easily detected at lateral posterior electrodes such as T5 and 95 - T6. Frontal or profile views of human (and animal) faces elicit 96 - the strongest N170 and the strength of the N170 does not seem to 97 - be influenced by how familiar a face is. Thus, although there is 98 - no consensus on the specific source of the N170, researchers 93 + The N170 is most easily detected at lateral posterior electrodes.</p> 94 + <p>Although there is no consensus on the specific source of the N170, researchers 99 95 believe it is related to activity in the fusiform face area, an 100 96 area of the brain that shows a similar response pattern and is 101 97 involved in encoding the holistic representation of a face (i.e 102 - eyes, nose mouth all arranged in the appropriate way). 98 + eyes, nose mouth all arranged in the appropriate way).</p> 99 + 103 100 </Segment> 101 + 104 102 </Grid.Column> 105 103 </Grid> 106 104 );
+2
app/components/HomeComponent/index.js
··· 95 95 } 96 96 97 97 handleLoadCustomExperiment(title: string) { 98 + console.log(title) 99 + console.log(this.state.recentWorkspaces) 98 100 this.setState({ isNewExperimentModalOpen: false }); 99 101 // Don't create new workspace if it already exists or title is too short 100 102 if (this.state.recentWorkspaces.includes(title)) {
+1 -1
app/components/PreviewExperimentComponent.js
··· 40 40 this.props.trials, 41 41 this.props.timelines 42 42 ), 43 - (value, time) => console.log('event ', value, time), // event callback 43 + (value, time) => {}, // event callback 44 44 () => {}, // start callback 45 45 () => {}, // stop callback 46 46 this.props.params.showProgessBar
+1 -1
app/utils/jspsych/timelines/n170.js
··· 17 17 sampleType: 'with-replacement', 18 18 pluginName: 'callback-image-display', 19 19 intro: 20 - 'You will view a series of faces and houses. Mentally note which stimulus you are viewing. Press any key to continue', 20 + 'You will view a series of faces and houses. Press 1 when a face appears and 9 for a house. Press any key to continue', 21 21 showProgressBar: false, 22 22 stimulus1: { dir: facesDir, title: 'Face', type: EVENTS.FACE, response: '1' }, 23 23 stimulus2: {