FleetCart/Modules/Report/Resources/assets/admin/js/main.js
2023-06-11 13:14:03 +01:00

10 lines
297 B
JavaScript

$('form').on('submit', (e) => {
$(e.currentTarget).find(':input').filter((i, el) => {
return ! el.value;
}).attr('disabled', 'disabled');
});
$('#report-type').on('change', (e) => {
window.location = route('admin.reports.index', { type: e.currentTarget.value });
});