Commit ed73200c authored by Oleg Korshul's avatar Oleg Korshul

send message to frameEditor (for plugins only)

parent 7a52154c
......@@ -268,7 +268,12 @@
} else
if (msg.event === 'onInternalMessage' && msg.data && msg.data.type == 'localstorage') {
_callLocalStorage(msg.data.data);
} else {
} else {
if (msg.type === "onExternalPluginMessage") {
_sendCommand(msg);
return;
}
if (msg.event === 'onReady') {
_onReady();
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment