Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

TinyMCE & Safari

Status
Not open for further replies.
Aug 23, 2004
174
0
0
US
Anyone have any issues with TinyMCE and Safari? Sometimes the editor loads, and if it doesn't load the first time it loads on refresh.

Code:
tinyMCE.init({
	// General options
	mode : 'textareas',
	theme : 'advanced',
	editor_deselector : 'noEditor',
	plugins : 'safari,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,ie
spell,inlinepopups,insertdatetime,preview,media,searchreplace,print,context
menu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xh
tmlxtras,studiov,wordcount',

	// Theme options
	theme_advanced_buttons1 : 'save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justi
fycenter,justifyright,justifyfull,formatselect,fontselect,fontsizeselect',
	theme_advanced_buttons2 : 
'cut,copy,paste,pastetext,pasteword,|,bullist,numlist,|,outdent,indent,bloc
kquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code',
	theme_advanced_buttons3 : 
'tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,iespell,medi
a,advhr',
	theme_advanced_buttons4 : 
'insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acr
onym,del,ins,attribs,|,visualchars,nonbreaking,studiov,pagebreak,|,preview,
|,forecolor,backcolor,|,fullscreen',
	theme_advanced_toolbar_location : 'top',
	theme_advanced_toolbar_align : 'left',
	theme_advanced_statusbar_location : 'bottom',
	theme_advanced_resizing : true,
		
	// Example content CSS (should be your site CSS)
	content_css : '/styles/styles.css?'+ new Date().getTime(),
});
 
i use tinymce pretty much every day on safari (mac). never had a problem.

in any event the problem cannot be php related (unless the tinymce applet is not being served by php): so you should check perhaps with the apple forums and javascript forums on the tek-tips and the wider web. i also suggest posting in moxie forums as they are more likely to be able to talk to specific problems that may exist with tinymce

i note that you are adding cache busters to your style sheet loader with tinymce init. perhaps you are also having cache problems on the load of the relevant js.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top