This file contains hidden or 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
Draw.loadPlugin(function(ui) { | |
// Define a custom action to toggle folding and moving properties | |
ui.actions.addAction('toggleFolding', function() { | |
var graph = ui.editor.graph; | |
if (!graph.isSelectionEmpty()) { | |
graph.getModel().beginUpdate(); | |
try { | |
var cell = graph.getSelectionCell(); | |
// Get the current style properties | |
var style = cell.getStyle(); |