OpenPGP (Compose) (#53) UNSTABLE

This commit is contained in:
RainLoop Team 2014-03-21 03:47:13 +04:00
parent b330f77bc0
commit 1c4ce1dfb2
14 changed files with 631 additions and 321 deletions

View file

@ -182,6 +182,7 @@ NewHtmlEditorWrapper.prototype.init = function ()
self.editor.setKeystroke(window.CKEDITOR.CTRL + 65/* A */, 'selectAll');
self.fOnReady();
self.__resizable = true;
self.resize();
});
}
@ -206,7 +207,7 @@ NewHtmlEditorWrapper.prototype.blur = function ()
NewHtmlEditorWrapper.prototype.resize = function ()
{
if (this.editor)
if (this.editor && this.__resizable)
{
this.editor.resize(this.$element.width(), this.$element.innerHeight());
}