Commit 63e3794b authored by Florian Cargoët's avatar Florian Cargoët

Fixes #372

parent 292d4a1b
...@@ -4003,10 +4003,12 @@ ...@@ -4003,10 +4003,12 @@
}, },
show: function () { show: function () {
// FIXME: There's a bug here, if show_only_online_users is true this.$el.show();
// Possible solution, get the group, call _.each and check _.each(this.getAll(), function (contactView) {
// showInRoster if (contactView.model.showInRoster()) {
this.$el.nextUntil('dt').addBack().show(); contactView.$el.show();
}
});
}, },
hide: function () { hide: function () {
......
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