diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-06-23 15:16:00 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-06-23 15:16:00 +0200 |
commit | a7343c243cb04885e076ab4b471c2f7fa1a2455b (patch) | |
tree | a7adf7f6e904cbca2ea7ba38b237a3ed816322f2 /skins | |
parent | b4cbed71b3d613b6fc471767b2e24a9a37d689a1 (diff) |
Focus displayed input element in show_header_row()
Diffstat (limited to 'skins')
-rw-r--r-- | skins/larry/ui.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/skins/larry/ui.js b/skins/larry/ui.js index eb9569feb..11125c389 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -1019,7 +1019,10 @@ function rcube_mail_ui() row.show(); $('#' + which + '-link').hide(); + layout_composeview(); + $('input,textarea', row).focus(); + return false; } |