Merge remote-tracking branch 'googsblockly/feature/variable_management' into feature/variable_management

This commit is contained in:
Rachel Fenichel 2016-07-15 15:32:42 -07:00
commit dfc142eb37
10 changed files with 126 additions and 112 deletions

View file

@ -167,7 +167,14 @@ Blockly.DRAG_NONE = 0;
Blockly.DRAG_STICKY = 1;
/**
* ENUM for freely draggable.
* ENUM for inside the non-sticky DRAG_RADIUS, for differentiating between
* clicks and drags.
* @const
*/
Blockly.DRAG_BEGIN = 1;
/**
* ENUM for freely draggable (outside the DRAG_RADIUS, if one applies).
* @const
*/
Blockly.DRAG_FREE = 2;