Commit 4ce4c0c4 by Ibrahim Awwal

Fix the dropdown filtering so it actually ignores the unread messages count.

parent f6ee0827
......@@ -84,7 +84,7 @@ function filterDrop(e) {
$items.hide();
$items.each(function(i) {
var thisText = $(this).not('.urnread').text();
var thisText = $(this).children().not('.unread').text();
$(this).parents('ul').siblings('a').not('.unread').each(function(i) {
thisText = thisText + ' ' + $(this).text();
});
......
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