remove extra insertion, it's already happening

This commit is contained in:
lilia 2014-08-24 21:11:57 -07:00
parent 2f0b0f7a1b
commit 5ddcc516e4

View file

@ -108,7 +108,7 @@ var Whisper = Whisper || {};
new_message: function(e) {
e.preventDefault();
$('.conversation').hide().trigger('close'); // detach any existing conversation views
this.view = new Whisper.NewConversationView().$el.insertAfter($('#gutter'));
this.view = new Whisper.NewConversationView();
//todo: less new
},