提交 c735f5c1 authored 作者: Anthony Minessale's avatar Anthony Minessale

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

上级 d9eafdf0
......@@ -414,6 +414,13 @@ function init() {
setupChat();
$("#ext").keyup(function (event) {
if (event.keyCode == 13) {
$( "#callbtn" ).trigger( "click" );
}
});
}
$(document).ready(function() {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论