Skip to content

Commit

Permalink
fix: add the stack click event
Browse files Browse the repository at this point in the history
  • Loading branch information
gonfunko committed Apr 19, 2024
1 parent 945629c commit d049a7e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/events_stack_click.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import * as Blockly from 'blockly';

export class StackClickEvent extends Blockly.Events.UiBase {
type = 'stackClick';

constructor(blockId, workspaceId) {
super(workspaceId);
this.blockId = blockId;
}
}

0 comments on commit d049a7e

Please sign in to comment.