We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e2ce82 commit 035ea0cCopy full SHA for 035ea0c
src/containers/gui.jsx
@@ -74,6 +74,16 @@ class GUI extends React.Component {
74
// this only notifies container when a project changes from not yet loaded to loaded
75
// At this time the project view in www doesn't need to know when a project is unloaded
76
this.props.onProjectLoaded();
77
+
78
+ const vm = this.props.vm;
79
+ // const intl = this.props.intl;
80
+ console.log(vm.getLoadedExtensionsInfo());
81
+ const loadedExtensionIds = vm.getLoadedExtensionsInfo();
82
83
+ window.parent.postMessage({
84
+ type: 'codetorch-extensions-loaded',
85
+ payload: loadedExtensionIds
86
+ }, '*');
87
}
88
89
render () {
0 commit comments