Get rid of Layout global

Instead, trigger and listen for events on the conversation collection
object.
This commit is contained in:
lilia 2014-11-19 23:08:22 -08:00
parent a835887459
commit d1c5b6da7a
4 changed files with 9 additions and 5 deletions

View file

@ -44,6 +44,11 @@
}.bind(this));
}.bind(this));
this.conversations.on('selected', function(view) {
$('.conversation').hide().trigger('close'); // detach any existing conversation views
this.setContent(view.$el.show());
view.render();
}, this);
},
events: {
'click #new-message': 'new_message',