Don't connect to blocks under the flyout.

This commit is contained in:
Rachel Fenichel
2017-01-05 16:06:15 -08:00
parent 3cd62050a2
commit a0e6d4bbb5
3 changed files with 69 additions and 24 deletions

View File

@@ -200,3 +200,17 @@ Blockly.TOOLBOX_AT_LEFT = 2;
* @const
*/
Blockly.TOOLBOX_AT_RIGHT = 3;
/**
* ENUM representing that an event is in the delete area of the trash can.
* @const
*/
Blockly.DELETE_AREA_TRASH = 1;
/**
* ENUM representing that an event is in the delete area of the toolbox or
* flyout.
* @const
*/
Blockly.DELETE_AREA_TOOLBOX = 2;