mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 12:09:20 +03:00
Fix html editor
This commit is contained in:
parent
17f6204d2a
commit
987fe4c2b7
15 changed files with 322 additions and 226 deletions
|
|
@ -81,6 +81,14 @@ SettingsIdentities.prototype.deleteIdentity = function (oIdentityToRemove)
|
|||
}
|
||||
};
|
||||
|
||||
SettingsIdentities.prototype.onHide = function ()
|
||||
{
|
||||
if (this.editor)
|
||||
{
|
||||
this.editor.hideEditorToolbar();
|
||||
}
|
||||
};
|
||||
|
||||
SettingsIdentities.prototype.onFocus = function ()
|
||||
{
|
||||
if (!this.editor && this.signatureDom())
|
||||
|
|
|
|||
|
|
@ -21,6 +21,14 @@ function SettingsIdentity()
|
|||
|
||||
Utils.addSettingsViewModel(SettingsIdentity, 'SettingsIdentity', 'SETTINGS_LABELS/LABEL_IDENTITY_NAME', 'identity');
|
||||
|
||||
SettingsIdentity.prototype.onHide = function ()
|
||||
{
|
||||
if (this.editor)
|
||||
{
|
||||
this.editor.hideEditorToolbar();
|
||||
}
|
||||
};
|
||||
|
||||
SettingsIdentity.prototype.onFocus = function ()
|
||||
{
|
||||
if (!this.editor && this.signatureDom())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue