Disable search inside list

This commit is contained in:
Nicolas A. Tonne
2015-05-08 12:45:21 +02:00
parent c9d08e51d0
commit 9bc0f8d02f

View File

@@ -11,6 +11,7 @@ $(document).ready(function()
});
find = false;
$("html").keydown(function(event) {
return;
if ((event.keyCode == 27 && find) || (event.ctrlKey && event.keyCode === 70))
{
find = !find;