Aleksander Machniak
2013-10-30 2aacf1a31d63e0f88e1a06fda9a99519a9f29e1a
program/js/editor.js
@@ -74,13 +74,20 @@
// react to real individual tinyMCE editor init
function rcmail_editor_callback()
{
  var elem = rcube_find_object('_from'),
  var css = {},
    elem = rcube_find_object('_from'),
    fe = rcmail.env.compose_focus_elem;
  if (rcmail.env.default_font)
    $(tinyMCE.get(rcmail.env.composebody).getBody()).css('font-family', rcmail.env.default_font);
    css['font-family'] = rcmail.env.default_font;
  if (elem && elem.type == 'select-one' && !rcmail.env.opened_extwin) {
  if (rcmail.env.default_font_size)
    css['font-size'] = rcmail.env.default_font_size;
  if (css['font-family'] || css['font-size'])
    $(tinyMCE.get(rcmail.env.composebody).getBody()).css(css);
  if (elem && elem.type == 'select-one') {
    rcmail.change_identity(elem);
    // Focus previously focused element
    if (fe && fe.id != rcmail.env.composebody) {