* 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:
Jean Raby
2012-07-09 15:47:42 +00:00
parent 22690a8f8f
commit 390755d305
2 changed files with 5 additions and 1 deletions

View File

@@ -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

View File

@@ -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);