Skip to content
Snippets Groups Projects
Commit 5e88c7b3 authored by Sandro Weber's avatar Sandro Weber
Browse files

added test iframe, ready for nest-desktop trial

parent 73b5dcef
No related branches found
No related tags found
No related merge requests found
......@@ -57,4 +57,9 @@
.simulation-view-experiment-title {
padding: 0px 10px 0px 10px;
font-weight: bold;
}
.flexlayout-iframe {
width: 100%;
height: 100%;
}
\ No newline at end of file
......@@ -34,8 +34,8 @@ const jsonBaseLayout = {
'children': [
{
'type': 'tab',
'name': 'FI',
'component':'grid'
'name': 'NEST wiki page',
'component':'nest_wiki'
}
]
}
......@@ -67,6 +67,10 @@ export default class SimulationView extends React.Component {
if (component === 'button') {
return <button>{node.getName()}</button>;
}
else if (component === 'nest_wiki') {
return <iframe src='https://en.wikipedia.org/wiki/NEST_(software)' title='nest_wiki'
className='flexlayout-iframe'></iframe>;
}
}
render() {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment