Skip to content

Instantly share code, notes, and snippets.

@artificer
Last active December 13, 2021 14:27
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 artificer/354ef2a20d6849fdd27a8978ab9e21c2 to your computer and use it in GitHub Desktop.
Save artificer/354ef2a20d6849fdd27a8978ab9e21c2 to your computer and use it in GitHub Desktop.
Resolution
Resolution
Empty State
Select BAU Any Response -> BAU Decision Filled
BAU Decision Filled&
Select BAU None -> Empty State
Second Stage
Is Visible?
BAU did respond? -> Second Stage Visible
BAU didnt respond? -> Second Stage Invisible
Second Stage Visible
Select BAU No Response -> Second Stage Invisible
Second Stage Invisible
Select BAU Response -> Second Stage Visible
FOS
Only NewDay FOS Visible
Select NewDay FOS Any -> NewDay and Final FOS Visible
NewDay and Final FOS Visible
Select NewDay FOS None -> Only NewDay FOS Visible
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