Styles fixes

This commit is contained in:
RainLoop Team 2015-02-16 06:32:08 +04:00
parent 4c6fd9cdd1
commit b3f3a51be6
4 changed files with 51 additions and 3 deletions

View file

@ -196,8 +196,8 @@
this.attachmentsPlace = ko.observable(false);
this.attachments.subscribe(Utils.windowResizeCallback);
this.attachmentsPlace.subscribe(Utils.windowResizeCallback);
this.attachments.subscribe(this.resizerTrigger);
this.attachmentsPlace.subscribe(this.resizerTrigger);
this.attachmentsInErrorCount.subscribe(function (iN) {
if (0 === iN)
@ -759,6 +759,7 @@
{
self.oEditor = new HtmlEditor(self.composeEditorArea(), null, function () {
fOnInit(self.oEditor);
self.resizerTrigger();
}, function (bHtml) {
self.isHtml(!!bHtml);
});
@ -766,6 +767,7 @@
else if (this.oEditor)
{
fOnInit(this.oEditor);
this.resizerTrigger();
}
}
};