[Glitch] Add attachment list fallback to public pages

Port JS changes from 4fb94c758e to glitch-soc
signup-info-prompt
Thibaut Girka 2019-01-13 14:42:50 +01:00
parent eff1c94744
commit 278ff1318f
1 changed files with 6 additions and 0 deletions

View File

@ -61,6 +61,12 @@ function main() {
if (reactComponents.length > 0) {
import(/* webpackChunkName: "containers/media_container" */ 'flavours/glitch/containers/media_container')
.then(({ default: MediaContainer }) => {
[].forEach.call(reactComponents, (component) => {
[].forEach.call(component.children, (child) => {
component.removeChild(child);
});
});
const content = document.createElement('div');
ReactDOM.render(<MediaContainer locale={locale} components={reactComponents} />, content);