Skip to content

Instantly share code, notes, and snippets.

@m9dfukc
Last active August 31, 2020 14:58
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 m9dfukc/5fecadd26718d77b46eabfcf1c1490dc to your computer and use it in GitHub Desktop.
Save m9dfukc/5fecadd26718d77b46eabfcf1c1490dc to your computer and use it in GitHub Desktop.
Screensaver
Screensaver
interrupt -> User
Init*
next -> Intro
Intro
next -> TranslationA
TranslationA
next -> AnimationA
error -> Init
final -> Error
AnimationA
next -> Init
User
Interaction*
next -> TranslationB
Question*
next -> Question
tryAgain -> Repeat
Repeat
next -> Question
TranslationB
next -> AnimationB
repat -> TranslationB
error -> TranslationError
final -> Error
TranslationError
next -> Screensaver
AnimationB
next -> Screensaver
Error
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