Skip to content

Instantly share code, notes, and snippets.

@hydrosquall
Last active October 20, 2019 23:41
Show Gist options
  • Save hydrosquall/61baf2af71c97d11163e1aea02e1d1d0 to your computer and use it in GitHub Desktop.
Save hydrosquall/61baf2af71c97d11163e1aea02e1d1d0 to your computer and use it in GitHub Desktop.
light
light
green
timer -> yellow
yellow
timer -> red
red
walk
ped_timer -> wait
wait
ped_timer -> stop
stop
timer -> green
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