(fileMap, entry)
| 79 | } |
| 80 | |
| 81 | runApplication(fileMap, entry) { |
| 82 | this.props.onRun() |
| 83 | switch (this.status) { |
| 84 | case 'loading': |
| 85 | this.fileMap = fileMap |
| 86 | this.entry = entry |
| 87 | break |
| 88 | case 'ready': |
| 89 | this.refs.iframe.contentWindow.postMessage({fileMap, entry}, '*') |
| 90 | break |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | renderFrame = () => { |
| 95 | const {assetRoot, vendorComponents, playerStyleSheet, playerCSS} = this.props |
no outgoing calls
no test coverage detected