send message to frameEditor (for plugins only). refactored plugin's messages.
This commit is contained in:
parent
d0674e891e
commit
9d2811389a
|
@ -258,15 +258,18 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
var _onMessage = function(msg) {
|
var _onMessage = function(msg) {
|
||||||
if (msg && msg.frameEditorId == placeholderId) {
|
if ( msg ) {
|
||||||
|
if ( msg.type === "onExternalPluginMessage" ) {
|
||||||
|
_sendCommand(msg);
|
||||||
|
} else
|
||||||
|
if ( msg.frameEditorId == placeholderId ) {
|
||||||
var events = _config.events || {},
|
var events = _config.events || {},
|
||||||
handler = events[msg.event],
|
handler = events[msg.event],
|
||||||
res;
|
res;
|
||||||
|
|
||||||
if (msg.event === 'onRequestEditRights' && !handler) {
|
if (msg.event === 'onRequestEditRights' && !handler) {
|
||||||
_applyEditRights(false, 'handler is\'n defined');
|
_applyEditRights(false, 'handler is\'n defined');
|
||||||
} else
|
} else if (msg.event === 'onInternalMessage' && msg.data && msg.data.type == 'localstorage') {
|
||||||
if (msg.event === 'onInternalMessage' && msg.data && msg.data.type == 'localstorage') {
|
|
||||||
_callLocalStorage(msg.data.data);
|
_callLocalStorage(msg.data.data);
|
||||||
} else {
|
} else {
|
||||||
if (msg.event === 'onReady') {
|
if (msg.event === 'onReady') {
|
||||||
|
@ -281,6 +284,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
var _checkConfigParams = function() {
|
var _checkConfigParams = function() {
|
||||||
|
|
Loading…
Reference in a new issue