Skip to content

Instantly share code, notes, and snippets.

@nbelyh
Last active August 28, 2017 20:26
Show Gist options
  • Save nbelyh/41bba9a70a28c78e1cc86abe58b6aa61 to your computer and use it in GitHub Desktop.
Save nbelyh/41bba9a70a28c78e1cc86abe58b6aa61 to your computer and use it in GitHub Desktop.
SvgPublish: show message on selection change.
// show message box on shape selection
diagram.selectionChanged.add(function(shapeId) {
// if selected
if (shapeId) {
var shape = diagram.shapes[shapeId];
alert('you selected shape: ' + shapeId + ', text:' + shape.Text);
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment