Skip to content

Commit

Permalink
Merge branch 'verification-details-household-summary' into verificati…
Browse files Browse the repository at this point in the history
…ons-individual-summary
  • Loading branch information
charlienparker committed Jan 24, 2025
2 parents 376330b + 191a4a4 commit 2ce51fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/assets/javascripts/application.js.erb
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ $(document).on('page:load turbolinks:load', function () {
});

function indicateRequiredFields() {
$('.admin-designation').each(function() {
$('label.required, legend.required').each(function() {
if ($(this).find('.sr-only').length == 0) {
$(this).append('<span class="sr-only sr-required-indicator">*</span>');
}
});
}

function indicateAdminDesignatedElements() {
$('label.required, legend.required').each(function() {
$('.admin-designation').each(function() {
if ($(this).find('.sr-only').length == 0) {
$(this).append('<span class="sr-only">⚙</span>');
}
Expand Down

0 comments on commit 2ce51fd

Please sign in to comment.