Skip to content

Instantly share code, notes, and snippets.

@phivk
Created February 15, 2019 10:40
Show Gist options
  • Save phivk/45501bff9df5716021bd0237674580c5 to your computer and use it in GitHub Desktop.
Save phivk/45501bff9df5716021bd0237674580c5 to your computer and use it in GitHub Desktop.
Insurgent of Myjava
Insurgent of Myjava
Landing
choose volunteer -> CharacterSelection
gallery -> Gallery
CharacterSelection
UI-CS
next -> CharacterCustomisation
home -> Landing
help -> Modal-CS
Modal-CS
videoEnded -> UI-CS
closeClick -> UI-CS
CharacterCustomisation
UI-CC
next -> BaseWeaponSelection
home -> Landing
help -> Modal-CC
Modal-CC
videoEnded -> UI-CC
closeClick -> UI-CC
BaseWeaponSelection
UI-BWS
next -> WeaponComposition
home -> Landing
help -> Modal-BWS
Modal-BWS
videoEnded -> UI-BWS
closeClick -> UI-BWS
WeaponComposition
UI-WC
next -> Generating Insurgent
home -> Landing
help -> Modal-WC
Modal-WC
videoEnded -> UI-WC
closeClick -> UI-WC
Generating Insurgent
timeout -> CompositionResult
CompositionResult
buttonClick -> Sign Name
buttonTimeout -> Sign Name
Sign Name
submit name -> Send by Email
skip -> Send by Email
Send by Email
submit email -> Gallery
skip -> Gallery
Gallery
view detail -> Gallery Detail
buttonClick -> Landing
buttonTimeout -> Landing
Gallery Detail
buttonClick -> Gallery
buttonTimeout -> Gallery
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