mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 13:39:22 +03:00
Release fixes
This commit is contained in:
parent
6576eee3c8
commit
44566aad4b
9 changed files with 51 additions and 71 deletions
|
|
@ -140,7 +140,10 @@
|
|||
if (this.editor)
|
||||
{
|
||||
this.modeToggle(true);
|
||||
this.editor.setData(sHtml);
|
||||
|
||||
try {
|
||||
this.editor.setData(sHtml);
|
||||
} catch (e) {}
|
||||
|
||||
if (bFocus)
|
||||
{
|
||||
|
|
@ -160,7 +163,9 @@
|
|||
}
|
||||
else
|
||||
{
|
||||
this.editor.setData(sPlain);
|
||||
try {
|
||||
this.editor.setData(sPlain);
|
||||
} catch (e) {}
|
||||
}
|
||||
|
||||
if (bFocus)
|
||||
|
|
@ -273,7 +278,9 @@
|
|||
{
|
||||
if (this.editor)
|
||||
{
|
||||
this.editor.focus();
|
||||
try {
|
||||
this.editor.focus();
|
||||
} catch (e) {}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue