mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
Disable search inside list
This commit is contained in:
@@ -11,6 +11,7 @@ $(document).ready(function()
|
|||||||
});
|
});
|
||||||
find = false;
|
find = false;
|
||||||
$("html").keydown(function(event) {
|
$("html").keydown(function(event) {
|
||||||
|
return;
|
||||||
if ((event.keyCode == 27 && find) || (event.ctrlKey && event.keyCode === 70))
|
if ((event.keyCode == 27 && find) || (event.ctrlKey && event.keyCode === 70))
|
||||||
{
|
{
|
||||||
find = !find;
|
find = !find;
|
||||||
|
|||||||
Reference in New Issue
Block a user