$()

in source/static-assets/js/main.js [307:315]


  $('.user-attribute-checkbox').each(function (attribute, index) {
    for (const property in tmpAttributes) {
      if ($(this).attr('name') === property) {
        if ($(this).prop('checked')) {
          tmpAttributes[property].push($(this).val())
        }
      }
    }
  })