Skip to content

Instantly share code, notes, and snippets.

@bradyclifford
Created July 14, 2023 14:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bradyclifford/637eaa7117c56282fe45962ef1685c08 to your computer and use it in GitHub Desktop.
Save bradyclifford/637eaa7117c56282fe45962ef1685c08 to your computer and use it in GitHub Desktop.
FullStory Examples
// Title case the bounded context and event name
FS?.event('Bounded Context/Event Name', { data... })
// 👎 Wrong way to name an event
FS?.event('Click page button to add household member', { data... })
// 👍 Right way to name an event
FS?.event('Shopping/Cart/Button/Add Household Member', { data... })
FS?.event('IFP/Assessment/Selected Silver Plan', { data... })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment