Skip to content

Commit

Permalink
Need to resize message area after adding attachments with progress bars
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Dec 3, 2014
1 parent 297c714 commit 33486f8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions imp/js/compose.js
Expand Up @@ -1739,6 +1739,7 @@ ImpCompose.classes.Attachlist = Class.create({
callback: function() {
--this.curr_upload;
li.remove();
this.compose.resizeMsgArea();
}.bind(this)
});
return;
Expand Down Expand Up @@ -1792,6 +1793,7 @@ ImpCompose.classes.Attachlist = Class.create({
onComplete: function() {
--this.curr_upload;
li.remove();
this.compose.resizeMsgArea();
}.bind(this),
onCreate: function(e) {
if (e.transport && e.transport.upload) {
Expand Down

0 comments on commit 33486f8

Please sign in to comment.