mirror of
https://github.com/scratchfoundation/scratch-blocks.git
synced 2025-08-28 22:10:31 -04:00
Merge remote-tracking branch 'googsblockly/feature/variable_management' into feature/variable_management
This commit is contained in:
commit
dfc142eb37
10 changed files with 126 additions and 112 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue