d17695dc by Jeff Balicki

ss

1 parent 0f6df167
......@@ -49,7 +49,7 @@ get_template_part( 'global-templates/numbers_hero' );
</div><!-- #content -->
</div><!-- #full-width-page-wrapper -->
<div class="modal fade " id="exampleModalLong" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal fade" id="exampleModalLong" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
......@@ -63,7 +63,7 @@ get_template_part( 'global-templates/numbers_hero' );
</div>
</div>
</div>
<div class="modal fade " id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
......@@ -82,22 +82,22 @@ jQuery( document ).ready(function($) {
$('#exampleModalLong .wpcf7-submit').attr('disabled', 'disabled');
$(document).on("change","#exampleModalLong input , #exampleModalLong textarea",function() {
var empty = false;
$('input.wpcf7-validates-as-required').each(function() {
$('#exampleModalLong input.wpcf7-validates-as-required').each(function() {
if ($(this).val() == '') {
empty = true;
}
});
if ($('input[name="topics[]"]:checked').length == 0) {
if ($('#exampleModalLong input[name="topics[]"]:checked').length == 0) {
empty = true;
}
if (!$('input[name="acceptance[]"]').is(":checked")) {
if (!$('#exampleModalLong input[name="acceptance[]"]').is(":checked")) {
empty = true;
}
if (empty) {
$('.wpcf7-submit').attr('disabled', 'disabled');
$('#exampleModalLong .wpcf7-submit').attr('disabled', 'disabled');
} else {
$('.wpcf7-submit').removeAttr('disabled');
$('#exampleModalLong .wpcf7-submit').removeAttr('disabled');
}
});
});
......