From f8df717e48ef3463cd3b8db76331e9080eccb61b Mon Sep 17 00:00:00 2001 From: Andrew O'Neil Date: Tue, 10 Mar 2009 21:20:28 +0000 Subject: [PATCH] FEATURE: #3614 - Allow spell checking in HTMLEditorField when used outside of the CMS git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.3@72791 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- javascript/HtmlEditorField.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/javascript/HtmlEditorField.js b/javascript/HtmlEditorField.js index 677700157..8823f41ab 100644 --- a/javascript/HtmlEditorField.js +++ b/javascript/HtmlEditorField.js @@ -13,15 +13,15 @@ if((typeof tinyMCE != 'undefined')) { theme_advanced_toolbar_location : "top", theme_advanced_toolbar_align : "left", theme_advanced_toolbar_parent : "right", - plugins : "blockquote,contextmenu,table,emotions,paste,../../tinymce_advcode", + plugins : "blockquote,contextmenu,table,emotions,paste,../../tinymce_advcode,spellchecker", blockquote_clear_tag : "p", table_inline_editing : true, theme_advanced_buttons1 : "bold,italic,underline,strikethrough,separator,justifyleft,justifycenter,justifyright,justifyfull,formatselect,separator,bullist,numlist,outdent,indent,blockquote,hr,charmap", - theme_advanced_buttons2 : "undo,redo,separator,cut,copy,paste,pastetext,pasteword,separator,advcode,search,replace,selectall,visualaid,separator,tablecontrols", + theme_advanced_buttons2 : "undo,redo,separator,cut,copy,paste,pastetext,pasteword,spellchecker,separator,advcode,search,replace,selectall,visualaid,separator,tablecontrols", theme_advanced_buttons3 : "", safari_warning : false, relative_urls : true, verify_html : true }); -} \ No newline at end of file +}