diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-10-28 09:35:55 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-10-28 09:35:55 +0100 |
commit | 50341eab4315d7dcefa40eb050f4bb8c544e5696 (patch) | |
tree | c46c61e18b664eee577c1c7e630fc3480a9b2db1 /program | |
parent | 281ca0ea2a368a5ecd62344bffaa4b4a5986db9e (diff) |
Disable TinyMCE contextmenu plugin as there are more cons than pros in using it (#1490118)
Diffstat (limited to 'program')
-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 b098dbad7..92654e330 100644 --- a/program/js/editor.js +++ b/program/js/editor.js @@ -45,7 +45,7 @@ function rcmail_editor_init(config) }); else { // mail compose $.extend(conf, { - plugins: 'paste,emotions,media,nonbreaking,table,searchreplace,visualchars,directionality,inlinepopups,tabfocus,contextmenu' + (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'), |