mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 06:52:40 -05:00
Fix lint
This commit is contained in:
parent
0a5ccbf42f
commit
bb0394a668
1 changed files with 2 additions and 2 deletions
|
@ -661,8 +661,8 @@ class VirtualMachine extends EventEmitter {
|
||||||
/**
|
/**
|
||||||
* Called when blocks are dragged from one sprite to another. Adds the blocks to the
|
* Called when blocks are dragged from one sprite to another. Adds the blocks to the
|
||||||
* workspace of the given target.
|
* workspace of the given target.
|
||||||
* @param {!Array<object>} blocks Blocks to add
|
* @param {!Array<object>} blocks Blocks to add.
|
||||||
# @param {!string} targetId Id of target to add blocks to.
|
* @param {!string} targetId Id of target to add blocks to.
|
||||||
*/
|
*/
|
||||||
shareBlocksToTarget (blocks, targetId) {
|
shareBlocksToTarget (blocks, targetId) {
|
||||||
const target = this.runtime.getTargetById(targetId);
|
const target = this.runtime.getTargetById(targetId);
|
||||||
|
|
Loading…
Reference in a new issue