UNPKG

cob-uswds

Version:

Customized USWDS UI components and visual style guide based on City of Boston Patterns Library

19 lines (14 loc) 476 B
const behavior = require("../../uswds-core/src/js/utils/behavior"); const toggleFormInput = require("../../uswds-core/src/js/utils/toggle-form-input"); const { CLICK } = require("../../uswds-core/src/js/events"); const { prefix: PREFIX } = require("../../uswds-core/src/js/config"); const LINK = `.${PREFIX}-show-password`; function toggle(event) { event.preventDefault(); toggleFormInput(this); } module.exports = behavior({ [CLICK]: { [LINK]: toggle, }, });