add UI error handler for form with tabs

This commit is contained in:
Simon Vieille 2021-05-13 19:43:49 +02:00
parent a711ca58fc
commit fa7fcd5022
1 changed files with 22 additions and 0 deletions

View File

@ -8,4 +8,26 @@ module.exports = function() {
.find('.custom-file-label')
.html(inputFile.files[0].name);
});
$('.nav a').each(function() {
const link = $(this)
const href = link.attr('href')
if (href.substr(0, 1) !== '#') {
return
}
console.log(href)
const tab = $('.tab-pane ' + href)
if (!tab.length) {
return
}
if (tab.find('.form-error-message').length) {
link.addClass('border border-danger')
link.click()
}
})
};