Skip to content

Instantly share code, notes, and snippets.

@rgeraldporter
Last active March 4, 2019 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rgeraldporter/d36a4fac0628b7af399dc2fa567b9486 to your computer and use it in GitHub Desktop.
Save rgeraldporter/d36a4fac0628b7af399dc2fa567b9486 to your computer and use it in GitHub Desktop.
Songster
Songster
Inactive Paused
unpause -> Inactive Unpaused
Inactive Unpaused
timer completes -> Active
is paused -> Inactive Paused
Active
is wrong time of day -> Inactive Unpaused
default -> Playing Song
Playing Song
play completes -> Inactive Unpaused
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