fix missing semicolon

This commit is contained in:
Rachel Fenichel
2016-12-05 16:11:59 -08:00
parent 885490b835
commit 17258990fd

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',