mirror of
https://github.com/Doodle3D/Doodle3D-Slicer.git
synced 2024-11-22 13:37:58 +01:00
make filename configurable through query
This commit is contained in:
parent
374fc4a32e
commit
264ea9ff00
4
index.js
4
index.js
@ -32,11 +32,11 @@ jss.createStyleSheet({
|
|||||||
}
|
}
|
||||||
}).attach();
|
}).attach();
|
||||||
|
|
||||||
let { file, selectedPrinter, actions } = queryString.parse(location.search);
|
let { file, selectedPrinter, actions, name } = queryString.parse(location.search);
|
||||||
if (actions) actions = JSON.parse(actions);
|
if (actions) actions = JSON.parse(actions);
|
||||||
|
|
||||||
render((
|
render((
|
||||||
<MuiThemeProvider muiTheme={muiTheme}>
|
<MuiThemeProvider muiTheme={muiTheme}>
|
||||||
<Interface actions={actions} fileUrl={file} selectedPrinter={selectedPrinter} name="doodle"/>
|
<Interface actions={actions} fileUrl={file} selectedPrinter={selectedPrinter} name={name}/>
|
||||||
</MuiThemeProvider>
|
</MuiThemeProvider>
|
||||||
), document.getElementById('app'));
|
), document.getElementById('app'));
|
||||||
|
Loading…
Reference in New Issue
Block a user