mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-25 19:42:30 +00:00
Also add shortcut for date input
This commit is contained in:
@@ -459,7 +459,7 @@ if ($('#frequency').val() == "")
|
||||
});
|
||||
}
|
||||
|
||||
/* format time input shortcut */
|
||||
/* time input shortcut */
|
||||
$('#start_time').change(function() {
|
||||
var raw_time = $(this).val();
|
||||
if(raw_time.match(/^\d\[0-6]d$/)) {
|
||||
@@ -471,6 +471,15 @@ $('#start_time').change(function() {
|
||||
}
|
||||
});
|
||||
|
||||
/* date input shortcut */
|
||||
$('#start_date').change(function() {
|
||||
raw_date = $(this).val();
|
||||
if(raw_date.match(/^[12]\d\d\d[01]\d[0123]\d$/)) {
|
||||
raw_date = raw_date.substring(0,4)+"-"+raw_date.substring(4,6)+"-"+raw_date.substring(6,8);
|
||||
$('#start_date').val(raw_date);
|
||||
}
|
||||
});
|
||||
|
||||
/* on mode change */
|
||||
$('.mode').change(function() {
|
||||
$.get('qso/band_to_freq/' + $('#band').val() + '/' + $('.mode').val(), function(result) {
|
||||
|
||||
Reference in New Issue
Block a user