reset timers on form reset
这个提交包含在:
父节点
2b7ee4e48c
当前提交
f2588ad132
共有 3 个文件被更改,包括 9 次插入 和 10 次删除
|
|
@ -1111,12 +1111,7 @@ $(document).on('keypress',function(e) {
|
||||||
|
|
||||||
if ( ! manual ) {
|
if ( ! manual ) {
|
||||||
$(function($) {
|
$(function($) {
|
||||||
handleStart = setInterval(function() { getUTCTimeStamp($('.input_start_time')); }, 500);
|
resetTimers();
|
||||||
handleEnd = setInterval(function() { getUTCTimeStamp($('.input_end_time')); }, 500);
|
|
||||||
});
|
|
||||||
|
|
||||||
$(function($) {
|
|
||||||
handleDate = setInterval(function() { getUTCDateStamp($('.input_date')); }, 1000);
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
@ -1151,9 +1146,7 @@ $(document).on('keypress',function(e) {
|
||||||
if (e.key === "Escape") { // escape key maps to keycode `27`
|
if (e.key === "Escape") { // escape key maps to keycode `27`
|
||||||
reset_fields();
|
reset_fields();
|
||||||
if ( ! manual ) {
|
if ( ! manual ) {
|
||||||
handleStart = setInterval(function() { getUTCTimeStamp($('.input_start_time')); }, 500);
|
resetTimers()
|
||||||
handleEnd = setInterval(function() { getUTCTimeStamp($('.input_end_time')); }, 500);
|
|
||||||
handleDate = setInterval(function() { getUTCDateStamp($('.input_date')); }, 1000);
|
|
||||||
}
|
}
|
||||||
$('#callsign').val("");
|
$('#callsign').val("");
|
||||||
$("#callsign").focus();
|
$("#callsign").focus();
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
<div class="col-sm-5">
|
<div class="col-sm-5">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
|
|
||||||
<form id="qso_input" method="post" action="<?php echo site_url('qso') . "?manual=" . $_GET['manual']; ?>" name="qsos" autocomplete="off">
|
<form id="qso_input" method="post" action="<?php echo site_url('qso') . "?manual=" . $_GET['manual']; ?>" name="qsos" autocomplete="off" onReset="resetTimers();">
|
||||||
|
|
||||||
<div class="card-header">
|
<div class="card-header">
|
||||||
<ul style="font-size: 15px;" class="nav nav-tabs card-header-tabs pull-right" id="myTab" role="tablist">
|
<ul style="font-size: 15px;" class="nav nav-tabs card-header-tabs pull-right" id="myTab" role="tablist">
|
||||||
|
|
|
||||||
|
|
@ -484,6 +484,12 @@ function reset_fields() {
|
||||||
$('.dxccsummary').remove();
|
$('.dxccsummary').remove();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function resetTimers() {
|
||||||
|
handleStart = setInterval(function() { getUTCTimeStamp($('.input_start_time')); }, 500);
|
||||||
|
handleEnd = setInterval(function() { getUTCTimeStamp($('.input_end_time')); }, 500);
|
||||||
|
handleDate = setInterval(function() { getUTCDateStamp($('.input_date')); }, 1000);
|
||||||
|
}
|
||||||
|
|
||||||
$("#callsign").focusout(function() {
|
$("#callsign").focusout(function() {
|
||||||
if ($(this).val().length >= 3) {
|
if ($(this).val().length >= 3) {
|
||||||
|
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用