mirror of
https://github.com/google/blockly.git
synced 2026-01-11 10:57:07 +01:00
feat: added blocklyToolboxFlyout CSS class to the flyout (#8386)
This commit is contained in:
@@ -143,7 +143,9 @@ export class Toolbox
|
||||
this.flyout_ = this.createFlyout_();
|
||||
|
||||
this.HtmlDiv = this.createDom_(this.workspace_);
|
||||
dom.insertAfter(this.flyout_.createDom('svg'), svg);
|
||||
const flyoutDom = this.flyout_.createDom('svg');
|
||||
dom.addClass(flyoutDom, 'blocklyToolboxFlyout');
|
||||
dom.insertAfter(flyoutDom, svg);
|
||||
this.setVisible(true);
|
||||
this.flyout_.init(workspace);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user