From f23702f2c724be16b3b56ec61094a4883e795ceb Mon Sep 17 00:00:00 2001 From: Neil Fraser Date: Mon, 21 Sep 2015 18:05:34 -0700 Subject: [PATCH] Turn off debugging in compiled mode. --- core/blockly.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/blockly.js b/core/blockly.js index f50fbbf24..e5936518d 100644 --- a/core/blockly.js +++ b/core/blockly.js @@ -60,6 +60,9 @@ goog.require('goog.color'); goog.require('goog.userAgent'); +// Turn off debugging when compiled. +var CLOSURE_DEFINES = {'goog.DEBUG': false}; + /** * Required name space for SVG elements. * @const