$()

in source/static-assets/js/main.js [282:293]


  $('.user-attribute-input').each(function (attribute, index) {
    for (const property in tmpAttributes) {
      if ($(this).data('attribute') === property) {
        if ($(this).data('inputmask')) {
          // We have an input mask so grab unmasked value
          tmpAttributes[property].push($(this).inputmask('unmaskedvalue'))
        } else {
          tmpAttributes[property].push($(this).val())
        }
      }
    }
  })