Remove out-of-date comment (#474)

This comment made sense [before multiple workspace support](67140282a0/core/blockly.js (L297)), where it was near a (Blockly.readOnly || isTargetSvg) check. Now, this logic is implemented in BlockSvg.onMouseDown_() instead.
This commit is contained in:
Rodrigo Queiro 2016-07-12 01:43:29 +02:00 committed by Neil Fraser
parent c9437ec7c4
commit ab03c4f411

View file

@ -656,8 +656,6 @@ Blockly.WorkspaceSvg.prototype.onMouseDown_ = function(e) {
// Right-click.
this.showContextMenu_(e);
} else if (this.scrollbar) {
// If the workspace is editable, only allow scrolling when gripping empty
// space. Otherwise, allow scrolling when gripping anywhere.
this.isScrolling = true;
// Record the current mouse position.
this.startDragMouseX = e.clientX;