Changeset 4293 in subversion


Ignore:
Timestamp:
Nov 30, 2010 3:16:25 PM (3 years ago)
Author:
alec
Message:
  • Fix cursor position on compose form in Webkit browsers (#1486674)
Location:
trunk/roundcubemail
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/CHANGELOG

    r4292 r4293  
    66- Add 'login_lc' config option for case-insensitive authentication (#1487113) 
    77- Fix window is blur'ed in IE when selecting a message (#1487316) 
     8- Fix cursor position on compose form in Webkit browsers (#1486674) 
    89 
    910RELEASE 0.5-BETA 
  • trunk/roundcubemail/program/js/editor.js

    r4065 r4293  
    7272    rcmail.change_identity(elem); 
    7373    // Focus previously focused element 
    74     if (fe && fe.id != rcmail.env.composebody) 
     74    if (fe && fe.id != rcmail.env.composebody) { 
     75      window.focus(); // for WebKit (#1486674) 
    7576      fe.focus(); 
     77    } 
    7678  } 
    7779 
Note: See TracChangeset for help on using the changeset viewer.