mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-06 11:43:50 +00:00
Functions: Add [space] to key_press() function.
This commit is contained in:
@@ -1587,6 +1587,9 @@ function number_pad($number,$n) {
|
|||||||
case 'backspace':
|
case 'backspace':
|
||||||
$key_code = '(e.which == 8)';
|
$key_code = '(e.which == 8)';
|
||||||
break;
|
break;
|
||||||
|
case 'space':
|
||||||
|
$key_code = '(e.which == 32)';
|
||||||
|
break;
|
||||||
case 'ctrl+s':
|
case 'ctrl+s':
|
||||||
$key_code = '(((e.which == 115 || e.which == 83) && (e.ctrlKey || e.metaKey)) || (e.which == 19))';
|
$key_code = '(((e.which == 115 || e.which == 83) && (e.ctrlKey || e.metaKey)) || (e.which == 19))';
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user