Add "stack click" event handler to VM

See: https://github.com/LLK/scratch-blocks/pull/360
This commit is contained in:
Tim Mickel 2016-06-01 10:26:06 -04:00
parent 2d834de766
commit cfed4e1bba

View file

@ -55,6 +55,9 @@ function VirtualMachine () {
id: e.blockId
});
break;
case 'stackclick':
instance.runtime.toggleStack(e.blockId);
break;
}
};
@ -76,6 +79,9 @@ function VirtualMachine () {
id: e.blockId
});
break;
case 'stackclick':
instance.runtime.toggleStack(e.blockId);
break;
}
};
}