mirror of
https://github.com/google/blockly.git
synced 2026-01-08 01:20:12 +01:00
Disable insertion markers for the December 2018 release
This commit is contained in:
@@ -27,7 +27,7 @@
|
||||
goog.provide('Blockly.BlockDragger');
|
||||
|
||||
goog.require('Blockly.BlockAnimations');
|
||||
goog.require('Blockly.InsertionMarkerManager');
|
||||
goog.require('Blockly.DraggedConnectionManager');
|
||||
goog.require('Blockly.Events.BlockMove');
|
||||
|
||||
goog.require('goog.math.Coordinate');
|
||||
@@ -57,10 +57,10 @@ Blockly.BlockDragger = function(block, workspace) {
|
||||
|
||||
/**
|
||||
* Object that keeps track of connections on dragged blocks.
|
||||
* @type {!Blockly.InsertionMarkerManager}
|
||||
* @type {!Blockly.DraggedConnectionManager}
|
||||
* @private
|
||||
*/
|
||||
this.draggedConnectionManager_ = new Blockly.InsertionMarkerManager(
|
||||
this.draggedConnectionManager_ = new Blockly.DraggedConnectionManager(
|
||||
this.draggingBlock_);
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user