diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-06-03 15:29:27 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-06-03 15:29:27 +0000 |
commit | 2bb9d6044b90e177c0c92aafbeb55c7e48d8383b (patch) | |
tree | 2e548d88826d0ec9278a5a5b7ba22aa0a8b5dddb /mod/tinymce | |
parent | c9b0e80dcfd9b1f1abbb4ffe6223d0c035d3c0a2 (diff) | |
download | elgg-2bb9d6044b90e177c0c92aafbeb55c7e48d8383b.tar.gz elgg-2bb9d6044b90e177c0c92aafbeb55c7e48d8383b.tar.bz2 |
Removed one unused and one absent plugin from tinyMCE init that was causing problems in some browsers.
git-svn-id: http://code.elgg.org/elgg/trunk@6341 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/tinymce')
-rw-r--r-- | mod/tinymce/views/default/input/longtext.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/tinymce/views/default/input/longtext.php b/mod/tinymce/views/default/input/longtext.php index 523931abe..2f16c0fe7 100644 --- a/mod/tinymce/views/default/input/longtext.php +++ b/mod/tinymce/views/default/input/longtext.php @@ -38,11 +38,11 @@ tinyMCE.init({ mode : "specific_textareas", editor_selector : "mceEditor", theme : "advanced", - plugins : "safari,spellchecker,autosave,fullscreen,preview,paste", + plugins : "spellchecker,autosave,fullscreen,paste", relative_urls : false, remove_script_host : false, document_base_url : "<?php echo $vars['url']; ?>", - theme_advanced_buttons1 : "bold,italic,underline,separator,strikethrough,bullist,numlist,undo,redo,link,unlink,image,blockquote,code,pastetext,pasteword,more,fullscreen,", + theme_advanced_buttons1 : "bold,italic,underline,separator,strikethrough,bullist,numlist,undo,redo,link,unlink,image,blockquote,code,pastetext,pasteword,more,fullscreen", theme_advanced_buttons2 : "", theme_advanced_buttons3 : "", theme_advanced_toolbar_location : "top", |