mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-01 11:32:44 +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:
@@ -1,5 +1,8 @@
|
||||
2012-07-09 Jean Raby <jraby@inverse.ca>
|
||||
|
||||
* UI/WebServerResources/UIxContactsUserFolders.js (onSearchFormSubmit):
|
||||
Restore behavior of a single dot (.) in the search field (wildcard search)
|
||||
|
||||
* UI/WebServerResources/SchedulerUI.js (onMenuRawEvent, onMenuRawTask):
|
||||
New callback to show the event/task content from the menu
|
||||
|
||||
|
||||
@@ -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