Skip to content

Commit e86da2d

Browse files
authored
Merge pull request #716 from MetaCell/feature/netpyne-137
netpyne-137 Add new steps for reopening plots in tutorial 3
2 parents f4ec6a2 + 49ed437 commit e86da2d

1 file changed

Lines changed: 48 additions & 3 deletions

File tree

webapp/redux/reducers/data/tutorial3_steps.js

Lines changed: 48 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,15 +174,60 @@ const tutorial3_steps = [
174174
</div>
175175
)
176176
},
177-
// Open the plots
177+
// ReOpen the plots
178+
// {
179+
// target: 'div[aria-disabled=false] img[src*="rasterPlot"]',
180+
// title: (
181+
// <div>Plots Display</div>
182+
// ),
183+
// content: (
184+
// <div>
185+
// <p>Reopen the Raster Plot, the LFP Time Series Plot, the RxD Concentration Plot and the Spike History Plot to see how the plots are impatected by the modification.</p>
186+
// </div>
187+
// )
188+
// },
189+
{
190+
target: 'img[src*="rasterPlot"]',
191+
title: (
192+
<div>Plots Display</div>
193+
),
194+
content: (
195+
<div>
196+
<p>Reopen the different plots to see how they are impatected by the modification.</p>
197+
<p>Open the Raster Plot, the LFP Time Series Plot, the RxD Concentration Plot and the Spike History Plot.</p>
198+
</div>
199+
)
200+
},
178201
{
179-
target: 'div[aria-disabled=false] img[src*="rasterPlot"]',
202+
target: 'img[src*="LFPTimeSeriesPlot"]',
180203
title: (
181204
<div>Plots Display</div>
182205
),
183206
content: (
184207
<div>
185-
<p>Reopen the Raster Plot, the LFP Time Series Plot, the RxD Concentration Plot and the Spike History Plot to see how the plots are impatected by the modification.</p>
208+
<p>LFP Time Series Plot.</p>
209+
</div>
210+
)
211+
},
212+
{
213+
target: 'img[src*="rxdConcentrationPlot"]',
214+
title: (
215+
<div>Plots Display</div>
216+
),
217+
content: (
218+
<div>
219+
<p>RxD Concentration Plot.</p>
220+
</div>
221+
)
222+
},
223+
{
224+
target: 'img[src*="spikePlot"]',
225+
title: (
226+
<div>Plots Display</div>
227+
),
228+
content: (
229+
<div>
230+
<p>Spike History Plot.</p>
186231
</div>
187232
)
188233
},

0 commit comments

Comments
 (0)