mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
Fixing eslint JSDoc from merge
This commit is contained in:
parent
42d03db28b
commit
b9bd037963
1 changed files with 2 additions and 2 deletions
|
@ -91,11 +91,11 @@ Blocks.prototype.getOpcode = function (id) {
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Blocks.prototype.generateBlockListener = function (isFlyout, opt_runtime) {
|
Blocks.prototype.generateBlockListener = function (isFlyout, opt_runtime) {
|
||||||
|
var instance = this;
|
||||||
/**
|
/**
|
||||||
* The actual generated block listener.
|
* The actual generated block listener.
|
||||||
* @param {Object} Blockly "block" event
|
* @param {Object} e Blockly "block" event
|
||||||
*/
|
*/
|
||||||
var instance = this;
|
|
||||||
return function (e) {
|
return function (e) {
|
||||||
// Validate event
|
// Validate event
|
||||||
if (typeof e !== 'object') return;
|
if (typeof e !== 'object') return;
|
||||||
|
|
Loading…
Reference in a new issue