From db8110c70d40b4e8864292f94c19248bb5a63b67 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Sat, 09 Jun 2012 14:20:59 -0400 Subject: [PATCH] Display attachment icon for multipart/signed messages (#1488525) --- program/js/editor.js | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/program/js/editor.js b/program/js/editor.js index ce3b38c..702ca1c 100644 --- a/program/js/editor.js +++ b/program/js/editor.js @@ -12,8 +12,6 @@ +-----------------------------------------------------------------------+ | Author: Eric Stadtherr <estadtherr@gmail.com> | +-----------------------------------------------------------------------+ - - $Id: editor.js 000 2006-05-18 19:12:28Z roundcube $ */ // Initialize HTML editor @@ -29,6 +27,7 @@ theme_advanced_toolbar_location: 'top', theme_advanced_toolbar_align: 'left', theme_advanced_buttons3: '', + theme_advanced_statusbar_location: 'none', extended_valid_elements: 'font[face|size|color|style],span[id|class|align|style]', relative_urls: false, remove_script_host: false, @@ -107,7 +106,7 @@ if (textarea && node) node.tabIndex = textarea.tabIndex; if (focus) - editor.getWin().focus(); + editor.getBody().focus(); } } } -- Gitblit v1.9.1