Fix searches not running on Enter, CS Release notes

This commit is contained in:
johndmulhausen 2017-01-17 18:51:22 -08:00
parent 63b9dff457
commit 89ea7cd2ff
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ back-ported fixes (security-related and priority defects) from the open source.
It incorporates defect fixes that you can use in environments where new features
cannot be adopted as quickly for consistency and compatibility reasons.
#### Prior versions
## Prior versions
These notes refer to the current and immediately prior releases of the
CS Engine. For notes on older versions, see the [CS Engine prior release notes archive](prior-release-notes.md).

View File

@ -27,7 +27,7 @@ function loadPage(url)
}
$(document).on("keypress", function(event) {
if (event.keyCode == 13) {
event.preventDefault();
if(autoCompleteShowing) event.preventDefault();
}
});
function highlightMe(inputTxt,keyword)