Change return type from sending messages

Pass the whole result from the outgoing message callback on to the
caller, and preserve the names of the members.

// FREEBIE
This commit is contained in:
lilia 2015-11-19 16:50:14 -08:00
parent 7b6820d2ac
commit 5c37c3d6ce
4 changed files with 15 additions and 15 deletions

View file

@ -146,7 +146,7 @@
}.bind(this)).catch(function(errors) {
this.trigger('done');
this.set({sent: true});
this.saveErrors(errors);
this.saveErrors(result.errors);
}.bind(this));
},