diff --git a/resources/functions.php b/resources/functions.php index 25049e2bf0..6007bf1b84 100644 --- a/resources/functions.php +++ b/resources/functions.php @@ -1587,6 +1587,9 @@ function number_pad($number,$n) { case 'backspace': $key_code = '(e.which == 8)'; break; + case 'space': + $key_code = '(e.which == 32)'; + break; case 'ctrl+s': $key_code = '(((e.which == 115 || e.which == 83) && (e.ctrlKey || e.metaKey)) || (e.which == 19))'; break;