Created
July 14, 2023 14:34
-
-
Save bradyclifford/637eaa7117c56282fe45962ef1685c08 to your computer and use it in GitHub Desktop.
FullStory Examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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