mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-30 04:29:21 +03:00
Fixed "Mouse right click don't works correctly" (Closes #466)
+ small fixes
This commit is contained in:
parent
e3064b10aa
commit
e96f297def
12 changed files with 76 additions and 25 deletions
|
|
@ -1262,13 +1262,16 @@
|
|||
|
||||
ComposePopupView.prototype.onShowWithDelay = function ()
|
||||
{
|
||||
if ('' === this.to())
|
||||
if (!Globals.bMobileDevice)
|
||||
{
|
||||
this.to.focused(true);
|
||||
}
|
||||
else if (this.oEditor)
|
||||
{
|
||||
this.oEditor.focus();
|
||||
if ('' === this.to())
|
||||
{
|
||||
this.to.focused(true);
|
||||
}
|
||||
else if (this.oEditor)
|
||||
{
|
||||
this.oEditor.focus();
|
||||
}
|
||||
}
|
||||
|
||||
this.resizerTrigger();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue