Commit c2212833 authored by JC Brand's avatar JC Brand

Fixes #607, view.model is undefined.

parent 6c9fa90f
......@@ -2467,7 +2467,9 @@
boxes_width = newchat ? newchat.$el.outerWidth(true) : 0,
new_id = newchat ? newchat.model.get('id') : null;
boxes_width += _.reduce(this.xget(new_id), this.getChatBoxWidth.bind(this));
boxes_width += _.reduce(this.xget(new_id), function (memo, view) {
return memo + this.getChatBoxWidth(view);
}.bind(this), 0);
if ((minimized_width + boxes_width) > $('body').outerWidth(true)) {
oldest_chat = this.getOldestMaximizedChat([new_id]);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment