mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 08:39:07 +01:00
Mail - Fix cursor did not start at the top of the body for Firefox in plaintext mode
This commit is contained in:
parent
f2a8b7d029
commit
c01d0edeff
@ -286,7 +286,7 @@ app.classes.mail = AppJS.extend(
|
||||
// focus
|
||||
jQuery(plainText.node).focus();
|
||||
// get the cursor to the top of the textarea
|
||||
if (typeof plainText.node.setSelectionRange !='undefined') plainText.node.setSelectionRange(0);
|
||||
if (typeof plainText.node.setSelectionRange !='undefined') plainText.node.setSelectionRange(0,0);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user