Fix: Show attachment views; they trigger update syncrhonously

FREEBIE
This commit is contained in:
Scott Nonnenberg 2017-06-16 10:46:55 -07:00
parent 5afc16da06
commit 24174312b9
2 changed files with 5 additions and 4 deletions

View file

@ -295,13 +295,14 @@
model: attachment,
timestamp: this.model.get('sent_at')
});
view.render();
this.loadedAttachments.push(view);
this.listenTo(view, 'update', function() {
view.updated = true;
this.appendAttachmentView(view);
});
view.render();
}.bind(this));
}
});