Skip to content

Instantly share code, notes, and snippets.

@egorvinogradov
Created April 24, 2015 00:44
Show Gist options
  • Save egorvinogradov/6b239d36139e12c64dad to your computer and use it in GitHub Desktop.
Save egorvinogradov/6b239d36139e12c64dad to your computer and use it in GitHub Desktop.
LG lead fields mapping
LG.settings.leadFields = LG.settings.leadFields.map(function(item){ // TODO: remove mapping
var key = item.key.toLowerCase().replace(/\s+/g, '_');
if ( key === 'company_name' ) {
key = 'org_name';
}
return _.extend(item, {
key: key
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment