Topic: Problem with Firefox 12
Hello,
I cannot get the editor to show in FF12, even with the simplest page:
<head>
<script language='text/javascript' type='text/javascript' src='./tiny_mce/tiny_mce_src.js'></script>
</head>
<body>
<textarea columns=10 rows=10 id=editor>
</textarea>
<script type="text/javascript">
tinyMCE.init({
// General options
mode: "exact",
theme: "advanced",
editor_selector: "mceEditor",
elements: 'editor',
editor_deselector: "mceNoEditor",
relative_urls : false,
remove_script_host : false,
document_base_url: "http://localhost:12051/BSIR/",
plugins: "safari,spellchecker,pagebreak,style,layer,table,advimage,advlink,save,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,imagemanager,filemanager,"
});
</script>
</body>This is using a vanilla set of the tnyMCE 3.5.2 files with no extra plugins etc. Also using the latest version of FF12.
The page shows fine in IE, but in FF the textarea has visibility=hidden added to the attributes and the error console says this.getDoc() is undefined.
Any clues?