mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-25 07:22:33 -05:00
Fixing js linting issues
This commit is contained in:
parent
d033271a1f
commit
41be65ba4d
1 changed files with 4 additions and 4 deletions
|
@ -396,7 +396,7 @@ class VirtualMachine extends EventEmitter {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a single sb3 sprite.
|
* Add a single sb3 sprite.
|
||||||
* @param {string} json JSON string representing the sprite/target.
|
* @param {string} target JSON string representing the sprite/target.
|
||||||
* @returns {Promise} Promise that resolves after the sprite is added
|
* @returns {Promise} Promise that resolves after the sprite is added
|
||||||
*/
|
*/
|
||||||
addSprite3 (target) {
|
addSprite3 (target) {
|
||||||
|
@ -412,7 +412,7 @@ class VirtualMachine extends EventEmitter {
|
||||||
}
|
}
|
||||||
|
|
||||||
const jsonFormatted = {
|
const jsonFormatted = {
|
||||||
targets: [target],
|
targets: [target]
|
||||||
};
|
};
|
||||||
|
|
||||||
return sb3
|
return sb3
|
||||||
|
|
Loading…
Reference in a new issue