Changeset de96774 in github
- Timestamp:
- Jun 30, 2012 3:50:47 AM (11 months ago)
- Children:
- d8b7509
- Parents:
- fc84ca1
- git-author:
- Aleksander Machniak <alec@…> (06/30/12 03:48:06)
- git-committer:
- Aleksander Machniak <alec@…> (06/30/12 03:50:47)
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/js/editor.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
r1d0c3f5 rde96774 2 2 =========================== 3 3 4 - Fix wrong compose screen elements focus in IE9 (#1488541) 4 5 - Fix fatal error when date.timezone isn't set (#1488546) 5 6 - Update to TinyMCE 3.5.4.1 -
program/js/editor.js
r9c8ff86 rde96774 87 87 // Focus previously focused element 88 88 if (fe && fe.id != rcmail.env.composebody) { 89 window.focus(); // for WebKit (#1486674) 90 fe.focus(); 89 // use setTimeout() for IE9 (#1488541) 90 window.setTimeout(function() { 91 window.focus(); // for WebKit (#1486674) 92 fe.focus(); 93 }, 10); 91 94 } 92 95 }
Note: See TracChangeset
for help on using the changeset viewer.
