Aleksander Machniak
2012-06-30 ad9dac529e37fc76d46d76cf3cff336598843826
Fix wrong compose screen elements focus in IE9 (#1488541)
2 files modified
4 ■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
program/js/editor.js 3 ●●●●● patch | view | raw | blame | history
CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Fix wrong compose screen elements focus in IE9 (#1488541)
- Fix fatal error when date.timezone isn't set (#1488546)
- Update to TinyMCE 3.5.4.1
- Better icons with distinct shapes for priority columns (#1488377)
program/js/editor.js
@@ -84,8 +84,11 @@
    rcmail.change_identity(elem);
    // Focus previously focused element
    if (fe && fe.id != rcmail.env.composebody) {
      // use setTimeout() for IE9 (#1488541)
      window.setTimeout(function() {
      window.focus(); // for WebKit (#1486674)
      fe.focus();
      }, 10);
    }
  }