@@ -31,7 +31,7 @@ class NetPyNESimConfig extends React.Component {
3131 } ) ;
3232
3333 render ( ) {
34- var contentLeft = < div className = "layoutVerticalFitInner" /> ;
34+ let contentLeft = < div className = "layoutVerticalFitInner" /> ;
3535 let contentRight = < div className = "layoutVerticalFitInner" /> ;
3636 const { classes } = this . props ;
3737 if ( this . state . sectionId == 'General' ) {
@@ -174,7 +174,7 @@ class NetPyNESimConfig extends React.Component {
174174 ) ;
175175 } else if ( this . state . sectionId == 'SaveConfiguration' ) {
176176 contentLeft = (
177- < div >
177+ < div className = "scrollbar scrollchild" >
178178 < NetPyNEField id = "simConfig.simLabel" >
179179 < NetPyNETextField
180180 fullWidth
@@ -215,7 +215,7 @@ class NetPyNESimConfig extends React.Component {
215215 </ div >
216216 ) ;
217217 contentRight = (
218- < div >
218+ < div className = "scrollbar scrollchild" >
219219 < NetPyNEField id = "simConfig.saveJson" className = "netpyneCheckbox" >
220220 < NetPyNECheckbox model = "simConfig.saveJson" />
221221 </ NetPyNEField >
@@ -248,23 +248,6 @@ class NetPyNESimConfig extends React.Component {
248248 >
249249 < NetPyNECheckbox model = "simConfig.timestampFilename" />
250250 </ NetPyNEField >
251- { /*
252- // TODO: can this be removed?
253- <NetPyNEField id="simConfig.saveHDF5" className={"netpyneCheckbox"} >
254- <NetPyNECheckbox model={"simConfig.saveHDF5"} />
255- </NetPyNEField>
256-
257- <NetPyNEField id="simConfig.saveDpk" className={"netpyneCheckbox"} >
258- <NetPyNECheckbox model={"simConfig.saveDpk"} />
259- </NetPyNEField>
260-
261- <NetPyNEField id="simConfig.saveDat" className={"netpyneCheckbox"} >
262- <NetPyNECheckbox model={"simConfig.saveDat"} />
263- </NetPyNEField>
264-
265- <NetPyNEField id="simConfig.saveCSV" className={"netpyneCheckbox"} >
266- <NetPyNECheckbox model={"simConfig.saveCSV"} />
267- </NetPyNEField> */ }
268251
269252 < NetPyNEField id = "simConfig.saveTiming" className = "netpyneCheckbox" >
270253 < NetPyNECheckbox model = "simConfig.saveTiming" />
@@ -273,7 +256,7 @@ class NetPyNESimConfig extends React.Component {
273256 ) ;
274257 } else if ( this . state . sectionId == 'Record' ) {
275258 contentLeft = (
276- < div >
259+ < div className = "scrollbar scrollchild" >
277260 < NetPyNEField id = "simConfig.recordCells" className = "listStyle" >
278261 < ListComponent model = "simConfig.recordCells" />
279262 </ NetPyNEField >
@@ -296,7 +279,7 @@ class NetPyNESimConfig extends React.Component {
296279 </ div >
297280 ) ;
298281 contentRight = (
299- < div >
282+ < div className = "scrollbar scrollchild" >
300283 < NetPyNEField
301284 id = "simConfig.saveLFPCells"
302285 className = "netpyneCheckbox"
@@ -315,8 +298,8 @@ class NetPyNESimConfig extends React.Component {
315298 </ div >
316299 ) ;
317300 } else if ( this . state . sectionId == 'netParams' ) {
318- var contentLeft = (
319- < div >
301+ contentLeft = (
302+ < div className = "scrollbar scrollchild" >
320303 < NetPyNEField id = "netParams.scale" >
321304 < NetPyNETextField
322305 fullWidth
@@ -366,7 +349,7 @@ class NetPyNESimConfig extends React.Component {
366349 </ div >
367350 ) ;
368351 contentRight = (
369- < div >
352+ < div className = "scrollbar scrollchild" >
370353 < NetPyNEField id = "netParams.sizeX" >
371354 < NetPyNETextField
372355 fullWidth
0 commit comments