Hi
We have a custom plugin which inserts a code snippet like this:
<div><widget id="123" title="My Video"/></div>
Since 4.3, we've made it work again. But the only thing that doesn't work is when you hover over the placeholder image, we see 'Unknown Object'. Is there a way for the title 'My Video' to show instead like before.
Guessing this is something to do with the DTD, which we've not altered at all.
Thanks in advance

Nudge
Just giving this one a nudge, anyone have any ideas?
Thanks in advance.
SOLVED
For anyone else struggling with this. In the plugin.js, we did the following:
function createFakeElement( editor, realElement ) { var fakeElement = editor.createFakeParserElement( realElement, 'cke_widget', 'widget', true ); fakeElement.attributes.title = realElement.attributes.title.trim(); fakeElement.attributes.alt = realElement.attributes.title.trim(); return fakeElement; }