diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-11-05 18:36:36 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-11-05 18:36:36 +0100 |
commit | 762565ceea334faaa90ee11a412cf34b2785b1c3 (patch) | |
tree | 23597c3a8f183040f003149b0fd0741c60c623c6 /program/js/editor.js | |
parent | 7bf6d2f01e6b5a24669febae3464f074d8c59cb7 (diff) |
Don't add signature (again) when opening compose view in a new window
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 bc36e9a39..3782de869 100644 --- a/program/js/editor.js +++ b/program/js/editor.js @@ -80,7 +80,7 @@ function rcmail_editor_callback() if (rcmail.env.default_font) $(tinyMCE.get(rcmail.env.composebody).getBody()).css('font-family', rcmail.env.default_font); - if (elem && elem.type == 'select-one') { + if (elem && elem.type == 'select-one' && !rcmail.env.opened_extwin) { rcmail.change_identity(elem); // Focus previously focused element if (fe && fe.id != rcmail.env.composebody) { |