remove extra insertion, it's already happening
This commit is contained in:
parent
2f0b0f7a1b
commit
5ddcc516e4
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue