Skip to content

Commit 3edcca4

Browse files
committed
netpyne-148 Fix order of some steps in tutorial 1
1 parent b3f0b85 commit 3edcca4

1 file changed

Lines changed: 18 additions & 18 deletions

File tree

webapp/redux/reducers/data/tutorial_steps.js

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -224,75 +224,75 @@ const tutorial_steps = [
224224
<p>Name the rule "E-&gt;E" (without spaces)</p>
225225
),
226226
},
227-
{ // netParamsconnParamsConnectivityRule0sec
228-
target: 'input[id*="netParamsconnParams"][id*="sec"]',
227+
{
228+
target: 'input[id*="netParamsconnParams"][id*="weight"]',
229229
title: 'Connectivity Rules Creation',
230230
content: (
231231
<>
232-
<p>Add "dend" as new postsynaptic neuron section</p>
232+
<p>Enter 0.005 in Weight of synaptic connection</p>
233233
</>
234234
),
235235
},
236236
{
237-
target: 'button[id^="netParamsconnParams"][id$="sec-button"]',
237+
target: 'input[id*="netParamsconnParams"][id*="probability"]',
238238
title: 'Connectivity Rules Creation',
239239
content: (
240240
<>
241-
<p>Click on "+" to add the value</p>
241+
<p>Enter 0.1 in Probability of connection</p>
242242
</>
243243
),
244244
},
245245
{
246-
target: 'input[id*="netParamsconnParams"][id*="loc"]',
246+
target: 'input[id*="netParamsconnParams"][id*="delay"]',
247247
title: 'Connectivity Rules Creation',
248248
content: (
249249
<>
250-
<p>Enter 0.5 as new postsynaptic neuron location</p>
250+
<p>Enter 5 in Connection delay</p>
251251
</>
252252
),
253253
},
254254
{
255-
target: 'button[id^="netParamsconnParams"][id$="loc-button"]',
255+
target: 'div[id*="netParamsconnParams"][id*="synMech"]',
256256
title: 'Connectivity Rules Creation',
257257
content: (
258258
<>
259-
<p>Click on "+" to add the value</p>
259+
<p>Select "exc" for Synaptic mechanism</p>
260260
</>
261261
),
262262
},
263-
{
264-
target: 'div[id*="netParamsconnParams"][id*="synMech"]',
263+
{ // netParamsconnParamsConnectivityRule0sec
264+
target: 'input[id*="netParamsconnParams"][id*="sec"]',
265265
title: 'Connectivity Rules Creation',
266266
content: (
267267
<>
268-
<p>Select "exc" for Synaptic mechanism</p>
268+
<p>Add "dend" as new postsynaptic neuron section</p>
269269
</>
270270
),
271271
},
272272
{
273-
target: 'input[id*="netParamsconnParams"][id*="probability"]',
273+
target: 'button[id^="netParamsconnParams"][id$="sec-button"]',
274274
title: 'Connectivity Rules Creation',
275275
content: (
276276
<>
277-
<p>Enter 0.1 in Probability of connection</p>
277+
<p>Click on "+" to add the value</p>
278278
</>
279279
),
280280
},
281281
{
282-
target: 'input[id*="netParamsconnParams"][id*="weight"]',
282+
target: 'input[id*="netParamsconnParams"][id*="loc"]',
283283
title: 'Connectivity Rules Creation',
284284
content: (
285285
<>
286-
<p>Enter 0.005 in Weight of synaptic connection</p>
286+
<p>Enter 0.5 as new postsynaptic neuron location</p>
287287
</>
288288
),
289289
},
290290
{
291-
target: 'input[id*="netParamsconnParams"][id*="delay"]',
291+
target: 'button[id^="netParamsconnParams"][id$="loc-button"]',
292292
title: 'Connectivity Rules Creation',
293293
content: (
294294
<>
295-
<p>Enter 5 in Connection delay</p>
295+
<p>Click on "+" to add the value</p>
296296
</>
297297
),
298298
},

0 commit comments

Comments
 (0)