Revert commenting out preventDefault calls

This commit is contained in:
Evan W. Patton
2016-12-10 22:52:54 -05:00
parent eed52fb081
commit 0ca08cc9cc
2 changed files with 2 additions and 2 deletions

View File

@@ -581,7 +581,7 @@ Blockly.BlockSvg.prototype.onMouseDown_ = function(e) {
}
// This event has been handled. No need to bubble up to the document.
e.stopPropagation();
//e.preventDefault();
e.preventDefault();
};
/**

View File

@@ -742,7 +742,7 @@ Blockly.WorkspaceSvg.prototype.onMouseDown_ = function(e) {
}
// This event has been handled. No need to bubble up to the document.
e.stopPropagation();
//e.preventDefault();
e.preventDefault();
};
/**