Last active
June 6, 2018 15:56
-
-
Save mybuddymichael/cdfe77fd36652c3c874a4e726e55070d to your computer and use it in GitHub Desktop.
Sign In*
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
Sign In Screen* | |
sign in -> Dashboard | |
Dashboard | |
sign out -> Sign In Screen | |
Nothing Claimed | |
request match -> Match Claimed | |
Match Claimed | |
Progress View* | |
do work -> Analysis Tool | |
complete -> Nothing Claimed | |
return match -> Nothing Claimed | |
reject match -> Rejection Dialog | |
Rejection Dialog | |
reject with reason -> Nothing Claimed | |
cancel -> Match Claimed | |
Analysis Tool | |
save progress -> Match Claimed | |
finish work -> Match Claimed | |
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