Block browser context menu in the toolbox and flyout

This commit is contained in:
Rachel Fenichel
2017-04-04 14:36:01 -07:00
parent 8e199ec04b
commit 077547ec90

View File

@@ -280,7 +280,7 @@ Blockly.init_ = function(mainWorkspace) {
var svg = mainWorkspace.getParentSvg();
// Suppress the browser's context menu.
Blockly.bindEventWithChecks_(svg, 'contextmenu', null,
Blockly.bindEventWithChecks_(svg.parentNode, 'contextmenu', null,
function(e) {
if (!Blockly.utils.isTargetInput(e)) {
e.preventDefault();