Changeset de96774 in github


Ignore:
Timestamp:
Jun 30, 2012 3:50:47 AM (11 months ago)
Author:
Aleksander Machniak <alec@…>
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)
Message:

Fix wrong compose screen elements focus in IE9 (#1488541)

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r1d0c3f5 rde96774  
    22=========================== 
    33 
     4- Fix wrong compose screen elements focus in IE9 (#1488541) 
    45- Fix fatal error when date.timezone isn't set (#1488546) 
    56- Update to TinyMCE 3.5.4.1 
  • program/js/editor.js

    r9c8ff86 rde96774  
    8787    // Focus previously focused element 
    8888    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); 
    9194    } 
    9295  } 
Note: See TracChangeset for help on using the changeset viewer.