1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-04-18 01:28:42 +00:00

add enter press detection to the extension field to auto-dial

This commit is contained in:
Anthony Minessale 2014-07-24 21:03:36 +05:00
parent d9eafdf0cb
commit c735f5c1a4

@ -414,6 +414,13 @@ function init() {
setupChat();
$("#ext").keyup(function (event) {
if (event.keyCode == 13) {
$( "#callbtn" ).trigger( "click" );
}
});
}
$(document).ready(function() {