Skip to content

Instantly share code, notes, and snippets.

@isthatcentered
Created June 25, 2018 10:21
Show Gist options
  • Save isthatcentered/7d5e2ffb7208662f7d6a1fd37fdd5d32 to your computer and use it in GitHub Desktop.
Save isthatcentered/7d5e2ffb7208662f7d6a1fd37fdd5d32 to your computer and use it in GitHub Desktop.
Timer*
Timer*
Idle
start->Running
Running
stop->Idle
pause->Paused
tick->done?
Paused
start->Running
stop->Idle
done?
time left->Running
time done->Idle
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