Merge pull request #764 from rachel-fenichel/cleanup/semicolon

fix missing semicolon
This commit is contained in:
Rachel Fenichel
2016-12-05 16:13:07 -08:00
committed by GitHub

View File

@@ -386,7 +386,7 @@ Code.init = function() {
// Interpolate translated messages into toolbox.
var toolboxText = document.getElementById('toolbox').outerHTML;
toolboxText = toolboxText.replace(/{(\w+)}/g,
function(m, p1) {return MSG[p1]});
function(m, p1) {return MSG[p1];});
var toolboxXml = Blockly.Xml.textToDom(toolboxText);
Code.workspace = Blockly.inject('content_blocks',