mirror of https://github.com/docker/docs.git
Fix searches not running on Enter, CS Release notes
This commit is contained in:
parent
63b9dff457
commit
89ea7cd2ff
|
@ -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).
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue