forked from treehouse/mastodon
[Glitch] Add attachment list fallback to public pages
Port JS changes from 4fb94c758e
to glitch-soc
signup-info-prompt
parent
eff1c94744
commit
278ff1318f
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue