Last active
March 1, 2020 20:46
-
-
Save sulram/092b52c610953bae9b58618356f31731 to your computer and use it in GitHub Desktop.
FLOWING EDITOR&
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FLOWING EDITOR& | |
Navigation | |
Idle | |
nodeMouseDown -> Node Wait | |
canvasMouseDown -> Canvas Wait | |
choiceMouseDown -> Choice Wait | |
Node Wait | |
moved? -> Drag Node | |
stay? -> Idle | |
Canvas Wait | |
moved? -> Drag Node | |
stay? -> Idle | |
Choice Wait | |
moved? -> Drag Node | |
stay? -> Idle | |
Drag Node | |
nodeMouseUp -> Idle | |
Drag Canvas | |
canvasMouseUp -> Idle | |
Drag Connection | |
choiceMouseUpCanvas -> Idle | |
choiceMouseUpOtherNode -> Idle | |
Inspector | |
Null Selection | |
nodeClick -> Node Info | |
choiceClick -> Choice Info | |
Node Info | |
canvasClick -> Null Selection | |
Null Choice* | |
choiceClick -> Choice Info | |
Choice Info | |
close -> Null Choice | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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