webcron/public/resources/job/add.js

20 lines
452 B
JavaScript
Raw Normal View History

2021-04-13 14:07:11 +02:00
$(function() {
initDatePickers();
initCronType();
});
function initDatePickers()
{
$('#nextrunselector').datetimepicker({format: 'L LTS'});
$('#lastrunselector').datetimepicker({format: 'L LTS'});
}
function initCronType()
{
$('.crontype-item').on('click', function() {
let type = $(this).data('type');
$('.crontype').val(type);
$('.crontype-inputs').hide();
$('.crontype-' + type).show();
})
}