Skip to content

Commit

Permalink
Update the registered component ids
Browse files Browse the repository at this point in the history
  • Loading branch information
kozbial committed Jun 11, 2021
1 parent 566b14e commit c4b8869
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/toolbox/toolbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Blockly.Toolbox = function(workspace) {
* The unique id for this component.
* @type {string}
*/
this.id = Blockly.utils.genUid();
this.id = 'toolbox';

/**
* The JSON describing the contents of this toolbox.
Expand Down
2 changes: 1 addition & 1 deletion core/trashcan.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Blockly.Trashcan = function(workspace) {
* The unique id for this component.
* @type {string}
*/
this.id = Blockly.utils.genUid();
this.id = 'trashcan';

/**
* A list of XML (stored as strings) representing blocks in the trashcan.
Expand Down
2 changes: 1 addition & 1 deletion core/zoom_controls.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Blockly.ZoomControls = function(workspace) {
* The unique id for this component.
* @type {string}
*/
this.id = Blockly.utils.genUid();
this.id = 'zoomControls';

/**
* A handle to use to unbind the mouse down event handler for zoom reset
Expand Down

0 comments on commit c4b8869

Please sign in to comment.