We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9e3eba commit c3544b7Copy full SHA for c3544b7
test/index.html
@@ -99,6 +99,10 @@
99
box-sizing: border-box;
100
}
101
102
+ .blocklyDeleteIcon {
103
+ display: block;
104
+ }
105
+
106
/* Blocks, connections and fields. */
107
.blocklyKeyboardNavigation
108
.blocklyActiveFocus:is(.blocklyPath, .blocklyHighlightedConnectionPath),
test/index.ts
@@ -92,6 +92,7 @@ function createWorkspace(): Blockly.WorkspaceSvg {
92
const workspace = Blockly.inject(blocklyDiv, injectOptions);
93
94
new KeyboardNavigation(workspace);
95
+ Blockly.ContextMenuItems.registerCommentOptions();
96
registerRunCodeShortcut();
97
98
// Disable blocks that aren't inside the setup or draw loops.
0 commit comments