really clear sketch when sketch is stopped

This commit is contained in:
therewasaguy 2016-07-17 20:49:10 -04:00
parent e7ea35fa60
commit 8b69ab7fdd
1 changed files with 2 additions and 7 deletions

View File

@ -115,15 +115,10 @@ class PreviewFrame extends React.Component {
renderSketch() {
const doc = ReactDOM.findDOMNode(this);
if (this.props.isPlaying) {
// TODO add polyfill for this
// doc.srcdoc = this.injectLocalFiles();
srcDoc.set(doc, this.injectLocalFiles());
} else {
// doc.srcdoc = '';
srcDoc.set(doc, '');
doc.contentWindow.document.open();
doc.contentWindow.document.write('');
doc.contentWindow.document.close();
doc.srcdoc = '';
srcDoc.set(doc, ' ');
}
}