Closed GoogleCodeExporter closed 8 years ago
I rather doubt this has anything to do with Prado. It's more likely that - if
at all - it's an issue with tinyMCE itself. However, since you provided no
testcase code and no setup information (ie. for ex. what options you're passing
to THtmlArea) nobody will be able to replicate your problem.
Btw. are you using absolute or relative urls? tinyMCE has its issues with
relative urls. Therefore, you should always use absolute ones to avoid those
pitfalls.
Also, there might be caching issues at work here. Try clearing your browser
cache and re-test whether you're still experiencing the same problem.
Original comment by google...@pcforum.hu
on 2 Aug 2011 at 8:55
tiny_mce\tiny_mce\themes\advanced\js\image.js
replace lines 93-96
93: ed.execCommand('mceInsertContent', false, '<img id="__mce_tmp" />',
{skip_undo : 1});
94: ed.dom.setAttribs('__mce_tmp', args);
95: ed.dom.setAttrib('__mce_tmp', 'id', '');
96: ed.undoManager.add();
with:
tinymce.each(args, function(value, name) {
if (value === "") {
delete args[name];
}
});
ed.execCommand('mceInsertContent', false, tinyMCEPopup.editor.dom.createHTML('img', args), {skip_undo : 1});
ed.undoManager.add();
Original comment by uaca...@gmail.com
on 1 Dec 2011 at 5:26
Closing since this is already fixed in trunk/ with r3065 (update of tinymce to
version 3.4.7)
Original comment by ctrlal...@gmail.com
on 2 Dec 2011 at 1:11
[deleted comment]
I change the file in "tiny_mce\tiny_mce\themes\advanced\js\image.js" and not
work.
I search for another file with name "image.js" and I found one in
"tiny_mce\plugins\advimage\js".
So, at line 171 in this file I change the code too.
Now it's work fine.
Thank you.
Original comment by aabughaz...@gmail.com
on 5 Dec 2011 at 7:49
Original issue reported on code.google.com by
aabughaz...@gmail.com
on 2 Aug 2011 at 11:31Attachments: