Skip to content

Instantly share code, notes, and snippets.

@nathan-muir
Last active November 18, 2019 02:31
Show Gist options
  • Save nathan-muir/f49e137961f6e4350f7de0d2df0a9183 to your computer and use it in GitHub Desktop.
Save nathan-muir/f49e137961f6e4350f7de0d2df0a9183 to your computer and use it in GitHub Desktop.
Toolbox
Toolbox
select_tool
select_one -> edit_tool
select_many -> move_tool
# open_tool ->
edit_tool
# text, image, legend are always edit_tool
# switch_tool -> other_tool
save -> select_tool
close -> select_tool
move_tool
close -> select_tool
add_tool
close -> select_tool
undo -> add_tool
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