From 3c9f206a2d26e5b339d7bf1ab292a5d08460793a Mon Sep 17 00:00:00 2001
From: Thomas Bruederli <thomas@roundcube.net>
Date: Thu, 14 Aug 2014 13:49:01 -0400
Subject: [PATCH] Enable full screen feature in tinyMCE (#1489198)

---
 program/js/editor.js |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/program/js/editor.js b/program/js/editor.js
index b2e96d1..ab47e2a 100644
--- a/program/js/editor.js
+++ b/program/js/editor.js
@@ -78,10 +78,10 @@
   else {
     $.extend(conf, {
       plugins: 'autolink charmap code colorpicker directionality emoticons link image media nonbreaking'
-        + ' paste table tabfocus textcolor searchreplace' + (config.spellcheck ? ' spellchecker' : ''),
+        + ' paste table tabfocus textcolor searchreplace fullscreen' + (config.spellcheck ? ' spellchecker' : ''),
       toolbar: 'bold italic underline | alignleft aligncenter alignright alignjustify'
         + ' | bullist numlist outdent indent ltr rtl blockquote | forecolor backcolor | fontselect fontsizeselect'
-        + ' | link unlink table | emoticons charmap image media | code searchreplace undo redo',
+        + ' | link unlink table | emoticons charmap image media | code searchreplace undo redo fullscreen',
       spellchecker_rpc_url: '../../../../../?_task=utils&_action=spell_html&_remote=1',
       spellchecker_language: rcmail.env.spell_lang,
       accessibility_focus: false,

--
Gitblit v1.9.1