Last active
July 15, 2019 18:34
-
-
Save derekr/af1600d36fee02506d58256dd62abcda to your computer and use it in GitHub Desktop.
App Store Review Prompt
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
App Store Review Prompt | |
App Launch* | |
new app version? -> Promptable Cycle | |
has been prompted? -> No Prompt Cycle | |
No Prompt Cycle | |
Promptable Cycle | |
Discover | |
tap listing -> Prompt For Review? | |
Prompt For Review? | |
first visit? -> Listing | |
second visit? -> Listing | |
third visit? -> Review Prompt | |
Listing | |
back -> Discover | |
Review Prompt | |
dismiss -> No Prompt Cycle | |
review -> App Store | |
App Store | |
reviewed -> No Prompt Cycle |
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