Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 22 additions & 23 deletions webapp/redux/reducers/data/tutorial_steps.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const tutorial_steps = [
target: '#newSectionButton',
title: 'Check Cell"s Sections',
content: (
<p>Click on Section to see the sections that make up this imported cell type</p>
<p>Click on Section to see the sections that make up this cell type</p>
)
},
{
Expand All @@ -47,7 +47,7 @@ const tutorial_steps = [
content: (
<>
<p>Click on the Populations icon.</p>
<p>You can also find the each sidebar icons as tab in the top panel</p>
<p>You can also find each sidebar icons as a tab in the top panel</p>
</>
)
},
Expand Down Expand Up @@ -88,7 +88,7 @@ const tutorial_steps = [
target: 'div[id*="netParamspopParams"][id*="cellType"]',
title: 'Cell Population Creation',
content: (
<p>Select the cell type to the one we imported earlier ("pyr")</p>
<p>Select the cell type to the one we created earlier ("pyr")</p>
// <p>Set the Cell type to the "pyr" cell we imported earlier</p>
),
waitFor: 'click',
Expand Down Expand Up @@ -130,7 +130,7 @@ const tutorial_steps = [
)
},
{
target: 'material-icons MuiIcon-root',
target: 'img[src*="d2NetPlot"]',
title: '2D Net Plot Panel',
content: (
<>
Expand All @@ -140,7 +140,6 @@ const tutorial_steps = [
<p>Explore moving and reshaping tabs (drag from the tab title)</p>
</>
),
collectionIndex: 2
},
{
target: 'MuiButtonBase-root MuiButton-root MuiButton-contained',
Expand Down Expand Up @@ -225,75 +224,75 @@ const tutorial_steps = [
<p>Name the rule "E-&gt;E" (without spaces)</p>
),
},
{ // netParamsconnParamsConnectivityRule0sec
target: 'input[id*="netParamsconnParams"][id*="sec"]',
{
target: 'input[id*="netParamsconnParams"][id*="weight"]',
title: 'Connectivity Rules Creation',
content: (
<>
<p>Add "dend" as new postsynaptic neuron section</p>
<p>Enter 0.005 in Weight of synaptic connection</p>
</>
),
},
{
target: 'button[id^="netParamsconnParams"][id$="sec-button"]',
target: 'input[id*="netParamsconnParams"][id*="probability"]',
title: 'Connectivity Rules Creation',
content: (
<>
<p>Click on "+" to add the value</p>
<p>Enter 0.1 in Probability of connection</p>
</>
),
},
{
target: 'input[id*="netParamsconnParams"][id*="loc"]',
target: 'input[id*="netParamsconnParams"][id*="delay"]',
title: 'Connectivity Rules Creation',
content: (
<>
<p>Enter 0.5 as new postsynaptic neuron location</p>
<p>Enter 5 in Connection delay</p>
</>
),
},
{
target: 'button[id^="netParamsconnParams"][id$="loc-button"]',
target: 'div[id*="netParamsconnParams"][id*="synMech"]',
title: 'Connectivity Rules Creation',
content: (
<>
<p>Click on "+" to add the value</p>
<p>Select "exc" for Synaptic mechanism</p>
</>
),
},
{
target: 'div[id*="netParamsconnParams"][id*="synMech"]',
{ // netParamsconnParamsConnectivityRule0sec
target: 'input[id*="netParamsconnParams"][id*="sec"]',
title: 'Connectivity Rules Creation',
content: (
<>
<p>Select "exc" for Synaptic mechanism</p>
<p>Add "dend" as new postsynaptic neuron section</p>
</>
),
},
{
target: 'input[id*="netParamsconnParams"][id*="probability"]',
target: 'button[id^="netParamsconnParams"][id$="sec-button"]',
title: 'Connectivity Rules Creation',
content: (
<>
<p>Enter 0.1 in Probability of connection</p>
<p>Click on "+" to add the value</p>
</>
),
},
{
target: 'input[id*="netParamsconnParams"][id*="weight"]',
target: 'input[id*="netParamsconnParams"][id*="loc"]',
title: 'Connectivity Rules Creation',
content: (
<>
<p>Enter 0.005 in Weight of synaptic connection</p>
<p>Enter 0.5 as new postsynaptic neuron location</p>
</>
),
},
{
target: 'input[id*="netParamsconnParams"][id*="delay"]',
target: 'button[id^="netParamsconnParams"][id$="loc-button"]',
title: 'Connectivity Rules Creation',
content: (
<>
<p>Enter 5 in Connection delay</p>
<p>Click on "+" to add the value</p>
</>
),
},
Expand Down