--
You received this message because you are subscribed to the Google Groups "Blockly" group.
To unsubscribe from this group and stop receiving emails from it, send an email to blockly+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to blo...@googlegroups.com.
var topBlocks = workspace.getTopBlocks();
for (var i = 0; i < topBlocks.length; i++) {
var topBlock = topBlocks[i];
if (topBlock.type !== "on_start") {
topBlock.setEnabled(false);
}
}
var workspace = Blockly.inject('myDiv', myOptions);
workspace.addChangeListener(Blockly.Events.disableOrphans);