Skip to content

Instantly share code, notes, and snippets.

@zephraph
Last active January 14, 2019 21:15
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 zephraph/c66895c281465d8284440051f947dad2 to your computer and use it in GitHub Desktop.
Save zephraph/c66895c281465d8284440051f947dad2 to your computer and use it in GitHub Desktop.
TabTimerState
TabTimerState
NotStarted
tabActivated -> SetTimer
TabTimerTicking
tabDeactivated -> TimerPaused
timerExpired -> TimerWaitingToReset
timerReset -> TabTimerTicking
deactivateTimers -> NotStarted
TimerPaused
tabActivated -> TabTimerTicking
timerReset -> TabTimerTicking
deactivateTimers -> NotStarted
TimerWaitingToReset
requestTimerReset -> SetTimer
deactivateTimers -> NotStarted
SetTimer
timerSet -> TabTimerTicking
tabDeactivated -> TimerPaused
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