Last active
July 17, 2020 14:45
-
-
Save EpocSquadron/ef21c9d267e73644c6f26290a68423bd to your computer and use it in GitHub Desktop.
Acquisition Modal
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
Acquisition Modal | |
pageLoad -> Checking Referrer? | |
Hidden* | |
Showing | |
exitModal -> Hidden | |
Checking Referrer? | |
matchesReferrer -> Requesting Modal Content? | |
matchesQueryParameter -> Requesting Modal Content? | |
noMatch -> Hidden | |
Requesting Modal Content? | |
success -> Showing | |
failure -> Hidden |
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
function render(model){ | |
let current_state_name = model.active_states[0].name; | |
return $("h1", | |
{style: {color: "darkBlue"}}, | |
`The current state is: ${current_state_name}`); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment