diff options
author | alecpl <alec@alec.pl> | 2010-08-27 12:26:00 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-08-27 12:26:00 +0000 |
commit | eb9eff07115b6b54bbd343d345189a6861e0ae78 (patch) | |
tree | e2d667b6be19c41baa03ccd0f9eb7a47918e447e | |
parent | 1fb718cae02c6929c1b31562f05eddc32ae3be17 (diff) |
- Fix TinyMCE buttons are hidden in Opera (#1486922)
- Fix initial resizing of html editor in some browsers
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | program/js/editor.js | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -11,6 +11,7 @@ CHANGELOG RoundCube Webmail - Fix "Select all" causes message to be opened in folder with exactly one message (#1486913) - Fix Tab key doesn't work in HTML editor in Google Chrome (#1486925) - Fix TinyMCE uses zh_CN when zh_TW locale is set (#1486929) +- Fix TinyMCE buttons are hidden in Opera (#1486922) RELEASE 0.4 ----------- diff --git a/program/js/editor.js b/program/js/editor.js index 248c79476..6cf3c6aaf 100644 --- a/program/js/editor.js +++ b/program/js/editor.js @@ -69,6 +69,8 @@ function rcmail_editor_callback(editor) rcmail.change_identity(elem); // set tabIndex and set focus to element that was focused before rcmail_editor_tabindex(rcmail.env.compose_focus_elem && rcmail.env.compose_focus_elem.id == rcmail.env.composebody); + // Trigger resize (needed for proper editor resizing in some browsers using default skin) + $(window).resize(); } // set tabIndex on tinyMCE editor |