diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-07-30 08:59:51 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-07-30 09:00:58 +0200 |
commit | 6ac21f275885bc8f58b17b1d2ddb5bfe9ca774cd (patch) | |
tree | 94c461683386e99ad0f02d781a274dd8e860e30e /program/js/editor.js | |
parent | 4e42278e2b8a5b4686a2e7eba7e2d5e1e9c61da1 (diff) |
Enable TinyMCE inlinepopups plugin
Diffstat (limited to 'program/js/editor.js')
-rw-r--r-- | program/js/editor.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/editor.js b/program/js/editor.js index 963b1ce19..ff7f209bd 100644 --- a/program/js/editor.js +++ b/program/js/editor.js @@ -47,7 +47,7 @@ function rcmail_editor_init(config) }); else { // mail compose $.extend(conf, { - plugins: 'paste,emotions,media,nonbreaking,table,searchreplace,visualchars,directionality,tabfocus' + (config.spellcheck ? ',spellchecker' : ''), + plugins: 'paste,emotions,media,nonbreaking,table,searchreplace,visualchars,directionality,inlinepopups,tabfocus' + (config.spellcheck ? ',spellchecker' : ''), theme_advanced_buttons1: 'bold,italic,underline,|,justifyleft,justifycenter,justifyright,justifyfull,|,bullist,numlist,outdent,indent,ltr,rtl,blockquote,|,forecolor,backcolor,fontselect,fontsizeselect', theme_advanced_buttons2: 'link,unlink,table,|,emotions,charmap,image,media,|,code,search,undo,redo', spellchecker_languages: (rcmail.env.spellcheck_langs ? rcmail.env.spellcheck_langs : 'Dansk=da,Deutsch=de,+English=en,Espanol=es,Francais=fr,Italiano=it,Nederlands=nl,Polski=pl,Portugues=pt,Suomi=fi,Svenska=sv'), |