From e943bb7a4186a925940d626227cf4f2c48250e95 Mon Sep 17 00:00:00 2001 From: akumar3 Date: Thu, 12 Dec 2024 23:53:35 +0530 Subject: [PATCH] Fix: Add support for Android virtual keyboard input (key code 229) --- js/bootstrap-timepicker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/bootstrap-timepicker.js b/js/bootstrap-timepicker.js index bbb923c5..7355f970 100644 --- a/js/bootstrap-timepicker.js +++ b/js/bootstrap-timepicker.js @@ -1109,7 +1109,7 @@ }, widgetKeyup: function(e) { - if ((e.which === 65) || (e.which === 77) || (e.which === 80) || (e.which === 46) || (e.which === 8) || (e.which >= 48 && e.which <= 57) || (e.which >= 96 && e.which <= 105)) { + if ((e.which === 65) || (e.which === 77) || (e.which === 80) || (e.which === 46) || (e.which === 8) || (e.which >= 48 && e.which <= 57) || (e.which >= 96 && e.which <= 105) || (e.which === 229)) { this.updateFromWidgetInputs(); } }