Release commit

This commit is contained in:
RainLoop Team 2015-02-15 04:30:21 +04:00
parent 86f855fa5b
commit b01f298b7b
13 changed files with 121 additions and 42 deletions

View file

@ -1308,6 +1308,7 @@
});
Events.sub('window.resize.real', this.resizerTrigger);
Events.sub('window.resize.real', _.debounce(this.resizerTrigger, 50));
if (this.dropboxEnabled())
{
@ -1328,6 +1329,13 @@
}
});
}
window.setInterval(function () {
if (self.modalVisibility() && self.oEditor)
{
self.oEditor.resize();
}
}, 5000);
};
ComposePopupView.prototype.driveCallback = function (sAccessToken, oData)