Skip to content

Instantly share code, notes, and snippets.

@chriskrycho
Last active May 5, 2021 18:40
Show Gist options
  • Save chriskrycho/757a9383827c3f3b93c93de9de2f3b09 to your computer and use it in GitHub Desktop.
Save chriskrycho/757a9383827c3f3b93c93de9de2f3b09 to your computer and use it in GitHub Desktop.
Job State
Job State
Job Title*
NEXT -> Job Match
Job Match
BACK -> Job Title
Unselected*
SELECT_CLAIMABLE -> Job Claim
SELECT_SHAREABLE -> Job Share
CREATE_JOB -> Job Description
Job Claim
BACK -> Unselected
Job Share
BACK -> Unselected
Job Description
BACK -> Unselected
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