mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-07 14:28:52 +00:00
* UI/WebServerResources/UIxContactsUserFolders.js (onSearchFormSubmit):
Restore behavior of a single dot (.) in the search field (wildcard search) Monotone-Parent: 7ec57a209bc7361239e0e096f134affbbd4b5fc2 Monotone-Revision: 0d5958f50cf116f607e45fcde7496a5bc3726e1c Monotone-Author: jraby@inverse.ca Monotone-Date: 2012-07-09T15:47:42
This commit is contained in:
@@ -14,7 +14,8 @@ function onSearchFormSubmit() {
|
||||
document.userFoldersRequest.aborted = true;
|
||||
document.userFoldersRequest.abort();
|
||||
}
|
||||
if (encodedValue.trim().length > minimumSearchLength) {
|
||||
if (encodedValue.trim().length > minimumSearchLength
|
||||
|| encodedValue == "." ) {
|
||||
startAnimation($("pageContent"), $("filterPanel"));
|
||||
document.userFoldersRequest
|
||||
= triggerAjaxRequest(url, usersSearchCallback);
|
||||
|
||||
Reference in New Issue
Block a user