Re: firefox 11 and multiple tinymce instances
shimmoril - Here is how I have it set up.
Settings for TinyMCE.init():
oninit: myCustomInitmyCustomInit function declaration:
function myCustomInit() {
if ($.browser.mozilla && $.browser.version.indexOf("11") == 0) {
setTimeout(function() {$('.mceIframeContainer iframe').each(function(i) { $(this).height($(this).height()+1); });},3000);
}
}Note: I have reverted by changes from my ealier post to tiny_mce_src.js, so the piece of code above should be enough to get it working.
Last edited by pvincent (2012-03-30 17:04:20)