mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Small fixes
This commit is contained in:
parent
fdf317f7a6
commit
7221add1ff
4 changed files with 27 additions and 19 deletions
|
|
@ -140,7 +140,7 @@
|
||||||
// {name: 'document', groups: ['mode', 'document', 'doctools']}
|
// {name: 'document', groups: ['mode', 'document', 'doctools']}
|
||||||
],
|
],
|
||||||
|
|
||||||
'removePlugins': 'contextmenu', //blockquote
|
'removePlugins': 'liststyle,tabletools,contextmenu', //blockquote
|
||||||
'removeButtons': 'Format,Undo,Redo,Cut,Copy,Paste,Anchor,Strike,Subscript,Superscript,Image,SelectAll',
|
'removeButtons': 'Format,Undo,Redo,Cut,Copy,Paste,Anchor,Strike,Subscript,Superscript,Image,SelectAll',
|
||||||
'removeDialogTabs': 'link:advanced;link:target;image:advanced;images:advanced',
|
'removeDialogTabs': 'link:advanced;link:target;image:advanced;images:advanced',
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -217,6 +217,7 @@
|
||||||
self.editor.on('instanceReady', function () {
|
self.editor.on('instanceReady', function () {
|
||||||
|
|
||||||
self.editor.setKeystroke(window.CKEDITOR.CTRL + 65 /* A */, 'selectAll');
|
self.editor.setKeystroke(window.CKEDITOR.CTRL + 65 /* A */, 'selectAll');
|
||||||
|
self.editor.editable().addClass('cke_enable_context_menu');
|
||||||
|
|
||||||
self.fOnReady();
|
self.fOnReady();
|
||||||
self.__resizable = true;
|
self.__resizable = true;
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "RainLoop",
|
"name": "RainLoop",
|
||||||
"title": "RainLoop Webmail",
|
"title": "RainLoop Webmail",
|
||||||
"version": "1.6.9",
|
"version": "1.6.9",
|
||||||
"release": "165",
|
"release": "167",
|
||||||
"description": "Simple, modern & fast web-based email client",
|
"description": "Simple, modern & fast web-based email client",
|
||||||
"homepage": "http://rainloop.net",
|
"homepage": "http://rainloop.net",
|
||||||
"main": "gulpfile.js",
|
"main": "gulpfile.js",
|
||||||
|
|
|
||||||
|
|
@ -4858,6 +4858,8 @@ class Actions
|
||||||
throw new \RainLoop\Exceptions\ClientException(\RainLoop\Notifications::CantSendMessage);
|
throw new \RainLoop\Exceptions\ClientException(\RainLoop\Notifications::CantSendMessage);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
if ($oMessage && $this->AddressBookProvider($oAccount)->IsActive())
|
if ($oMessage && $this->AddressBookProvider($oAccount)->IsActive())
|
||||||
{
|
{
|
||||||
$aArrayToFrec = array();
|
$aArrayToFrec = array();
|
||||||
|
|
@ -4879,6 +4881,11 @@ class Actions
|
||||||
$oAccount->ParentEmailHelper(), \array_values($aArrayToFrec), !!$oSettings->GetConf('ContactsAutosave', true));
|
$oAccount->ParentEmailHelper(), \array_values($aArrayToFrec), !!$oSettings->GetConf('ContactsAutosave', true));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
catch (\Exception $oException)
|
||||||
|
{
|
||||||
|
$this->Logger()->WriteException($oException);
|
||||||
|
}
|
||||||
|
|
||||||
return $this->TrueResponse(__FUNCTION__);
|
return $this->TrueResponse(__FUNCTION__);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue