Trigger form validation everytime an element of the settings_form loose focus

This commit is contained in:
morpheus65535 2018-03-12 16:34:19 -04:00
parent e788570726
commit dd9b716df7
1 changed files with 4 additions and 0 deletions

View File

@ -679,4 +679,8 @@
$('.form').form('validate form');
$('#loader').removeClass('active');
});
$('#settings_form').focusout(function() {
$('.form').form('validate form');
})
</script>