Created
August 15, 2018 10:55
-
-
Save ifyoumakeit/9ed92fa0f8f69f331780ec043ab2a66b to your computer and use it in GitHub Desktop.
Reach
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
Reach | |
Register | |
Login | |
processMobileNumber -> Is Returning User? | |
Is Returning User? | |
pass -> Search | |
fail -> Authentication | |
Authentication | |
processToken -> Is Token Valid? | |
Is Token Valid? | |
pass -> Search | |
fail -> Authentication | |
UserProfileInit | |
Admin | |
Search | |
onSearch -> SearchResults | |
SearchResults | |
cellPressed -> VoterRecord | |
UserProfileEdit | |
VoterRecord | |
Leaderboard | |
CampaignPicker | |
Menu | |
History | |
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