- π«π·France luukyb
I am closing this issue. Acquia, who acquired Widen, would like to guide users to use the Acquia DAM module β . If you are still a user of this module, please contact your Acquia support team.
The postMessage event listener nulls the editorId which means if a user tries embedding another image from the same editor, nothing happens has the check below does not pass:
if (embedCode && editorId) {
const currentEditor = CKEDITOR.instances[editorId];
if (currentEditor) {
currentEditor.insertHtml(embedCode);
}
editorId = null;
}
Use the Widen dialog plugin. Add an image from the widen search dialog. And try adding another one. Nothing happens.
Setting the editorId value in the event handler as such:
// Setting the editor ids to the current editor instance name.
editorId = CKEDITOR.currentInstance.name;
if (embedCode && editorId) {
const currentEditor = CKEDITOR.instances[editorId];
if (currentEditor) {
currentEditor.insertHtml(embedCode);
}
editorId = null;
}
Closed: won't fix
1.4
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
I am closing this issue. Acquia, who acquired Widen, would like to guide users to use the Acquia DAM module β . If you are still a user of this module, please contact your Acquia support team.