summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-06-30 09:48:06 +0200
committerAleksander Machniak <alec@alec.pl>2012-06-30 09:48:06 +0200
commitad9dac529e37fc76d46d76cf3cff336598843826 (patch)
tree255b30721e58f3a3b9b886fae2ffdbad1926fe26
parent8ba01c077b12949f747963ef4739c4cfd55540e8 (diff)
Fix wrong compose screen elements focus in IE9 (#1488541)
-rw-r--r--CHANGELOG1
-rw-r--r--program/js/editor.js7
2 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index e7e4c22cf..bdc472ad3 100644
--- a/CHANGELOG
+++ b/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)
diff --git a/program/js/editor.js b/program/js/editor.js
index 702ca1cd4..87ea1937f 100644
--- a/program/js/editor.js
+++ b/program/js/editor.js
@@ -84,8 +84,11 @@ function rcmail_editor_callback()
rcmail.change_identity(elem);
// Focus previously focused element
if (fe && fe.id != rcmail.env.composebody) {
- window.focus(); // for WebKit (#1486674)
- fe.focus();
+ // use setTimeout() for IE9 (#1488541)
+ window.setTimeout(function() {
+ window.focus(); // for WebKit (#1486674)
+ fe.focus();
+ }, 10);
}
}