Created
November 9, 2018 23:02
-
-
Save markmiro/6c59da5e3362029fbd191322d1be3c97 to your computer and use it in GitHub Desktop.
IR Notifications*
This file contains 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
IR Notifications* | |
No Notifications | |
fetch -> Notifications Queue | |
Notifications Queue | |
self dismiss current -> Has Notifications? | |
dismiss current -> Has Notifications? | |
follow current cta -> Customer Messenger | |
fetch -> Has Notifications? | |
Has Notifications? | |
has? -> Notifications Queue | |
has not? -> No Notifications | |
Customer Messenger | |
back -> No Notifications |
This file contains 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