mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Added initial dom element insertion in init
no issue Previously, we expected theme to include an empty div with id as `root` where we loaded our widget. This change automatically adds a root div to the document and renders widget inside it.
This commit is contained in:
parent
88d8008bcf
commit
0b7707fe7a
1 changed files with 8 additions and 1 deletions
|
@ -3,12 +3,19 @@ import ReactDOM from 'react-dom';
|
|||
import './index.css';
|
||||
import App from './App';
|
||||
|
||||
function addRootDiv() {
|
||||
const elem = document.createElement('div');
|
||||
elem.id = 'ghost-membersjs-root';
|
||||
document.body.appendChild(elem);
|
||||
}
|
||||
|
||||
function initMembersJS(data) {
|
||||
addRootDiv();
|
||||
ReactDOM.render(
|
||||
<React.StrictMode>
|
||||
<App data={data} />
|
||||
</React.StrictMode>,
|
||||
document.getElementById('root')
|
||||
document.getElementById('ghost-membersjs-root')
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue