diff --git a/lib/assets/javascripts/views/plans/download.js b/lib/assets/javascripts/views/plans/download.js index 1c787ab..2f5af98 100644 --- a/lib/assets/javascripts/views/plans/download.js +++ b/lib/assets/javascripts/views/plans/download.js @@ -1,10 +1,10 @@ -$(() => { - // Hide the PDF Formatting section if 'pdf' is not the desired format - $('select#format').on('change', (e) => { - if ($(e.currentTarget).val() === 'pdf') { - $('#pdf-formatting').show(); - } else { - $('#pdf-formatting').hide(); - } - }); -}); +$(() => { + // Hide the PDF Formatting section if 'pdf' is not the desired format + $('select#format').on('change', (e) => { + if ($(e.currentTarget).val() === 'pdf') { + $('#pdf-formatting').show(); + } else { + $('#pdf-formatting').hide(); + } + }); +});