Searching for users with @ should work (fixes #6)

This commit is contained in:
Dionysis Zindros 2014-01-07 23:46:02 -08:00
parent 2d3f8c3935
commit f3a01897a7

View File

@ -355,6 +355,11 @@ function closeSearchDialog()
function userSearchKeypress(item) {
var partialName = $(".userMenu-search-field").val().toLowerCase();
if ( partialName.substr( 0, 1 ) == '@' ) {
partialName = partialName.substr( 1 );
}
//var partialName = item.val();
if( !partialName.length ) {