Copy start to end time on focus out

这个提交包含在:
phl0 2023-10-27 10:11:09 +02:00
父节点 b741d0428d
当前提交 f56e031946
找不到此签名对应的密钥
GPG 密钥 ID: 48EA1E640798CA9A

查看文件

@ -1121,6 +1121,12 @@ $(document).on('keypress',function(e) {
clearInterval(handleDate);
}
});
$('#start_time').focusout(function() {
if (manual && $('#start_time').val() != '') {
$('#end_time').val($('#start_time').val());
console.log("HERE!");
}
});
jQuery(function($) {
var input = $('#callsign');