Pass through block drag event

This commit is contained in:
DD 2018-02-12 10:25:42 -05:00
parent 8e1719b716
commit fe4b3d3c01
3 changed files with 30 additions and 0 deletions

View file

@ -288,6 +288,16 @@ class Blocks {
newCoordinate: e.newCoordinate
});
break;
case 'drag':
if (optRuntime) {
optRuntime.emitBlockDragUpdate(e.isOutside);
}
break;
case 'endDrag':
if (optRuntime) {
optRuntime.emitBlockDragUpdate(false /* areBlocksOverGui */);
}
break;
case 'delete':
// Don't accept delete events for missing blocks,
// or shadow blocks being obscured.