diff --git a/demos/custom-fields/turtle/index.html b/demos/custom-fields/turtle/index.html
index f5b4cdfeb..1c012445a 100644
--- a/demos/custom-fields/turtle/index.html
+++ b/demos/custom-fields/turtle/index.html
@@ -113,6 +113,7 @@
}
function toggleEditable() {
+ Blockly.hideChaff();
var blocks = workspace.getAllBlocks();
for(var i = 0, block; block = blocks[i]; i++) {
block.setEditable(!block.isEditable());
@@ -120,6 +121,7 @@
}
function toggleCollapsed() {
+ Blockly.hideChaff();
var blocks = workspace.getAllBlocks();
for(var i = 0, block; block = blocks[i]; i++) {
block.setCollapsed(!block.isCollapsed());