FleetCart/Modules/Report/Resources/assets/admin/js/main.js

10 lines
297 B
JavaScript
Raw Normal View History

2023-06-11 12:14:03 +00:00
$('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 });
});