Skip to content

Commit

Permalink
Formatting fix to print-page.js
Browse files Browse the repository at this point in the history
  • Loading branch information
anselmbradford committed Jan 24, 2025
1 parent 7b065fb commit 82c561d
Showing 1 changed file with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@ import { analyticsSendEvent } from '@cfpb/cfpb-analytics';
import $ from '../../../../../js/modules/util/dollar-sign.js';

const print = {

init: function() {
$('.next-steps__controls > button').on('click', function (evt) {
evt.preventDefault();
window.print();
analyticsSendEvent({ action: 'Step Completed', label: 'Print' });
});
}
}
init: function () {
$('.next-steps__controls > button').on('click', function (evt) {
evt.preventDefault();
window.print();
analyticsSendEvent({ action: 'Step Completed', label: 'Print' });
});
},
};

export default print;

0 comments on commit 82c561d

Please sign in to comment.