mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-01-08 14:01:58 -05:00
fix createBlock
This commit is contained in:
parent
11c6537f42
commit
2b2187014f
1 changed files with 0 additions and 1 deletions
|
@ -50,7 +50,6 @@ Runtime.THREAD_STEP_INTERVAL = 1000 / 60;
|
|||
* Block management: create blocks and stacks from a `create` event
|
||||
* @param {!Object} block Blockly create event to be processed
|
||||
*/
|
||||
Runtime.prototype.createBlock = function (block) {
|
||||
Runtime.prototype.createBlock = function (block, opt_isFlyoutBlock) {
|
||||
// Create new block
|
||||
this.blocks[block.id] = block;
|
||||
|
|
Loading…
Reference in a new issue