mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-28 11:39:21 +03:00
1.10.4.183
--- Fixes: New login form style display problem since version 1.10.4 (#1196) Collapse the TO: field in message view (#1199) Paste with HTML tags fails (#1193)
This commit is contained in:
parent
224362299a
commit
0bbb2f14a4
21 changed files with 1947 additions and 140 deletions
|
|
@ -256,6 +256,7 @@ class AbstractApp extends AbstractBoot
|
|||
if (logout && window.location.href !== customLogoutLink)
|
||||
{
|
||||
_.delay(() => {
|
||||
|
||||
if (inIframe && window.parent)
|
||||
{
|
||||
window.parent.location.href = customLogoutLink;
|
||||
|
|
@ -264,6 +265,9 @@ class AbstractApp extends AbstractBoot
|
|||
{
|
||||
window.location.href = customLogoutLink;
|
||||
}
|
||||
|
||||
$win.trigger('rl.tooltips.diactivate');
|
||||
|
||||
}, Magics.Time100ms);
|
||||
}
|
||||
else
|
||||
|
|
@ -273,6 +277,7 @@ class AbstractApp extends AbstractBoot
|
|||
routeOff();
|
||||
|
||||
_.delay(() => {
|
||||
|
||||
if (inIframe && window.parent)
|
||||
{
|
||||
window.parent.location.reload();
|
||||
|
|
@ -281,6 +286,9 @@ class AbstractApp extends AbstractBoot
|
|||
{
|
||||
window.location.reload();
|
||||
}
|
||||
|
||||
$win.trigger('rl.tooltips.diactivate');
|
||||
|
||||
}, Magics.Time100ms);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue