Commit 8b852cda authored by neil.fraser@gmail.com's avatar neil.fraser@gmail.com

Fix Block Factory generated statement. Issue 225.

git-svn-id: http://blockly.googlecode.com/svn/trunk@1720 c400ca83-b69d-9dd7-9705-49c6b8615e23
parent 8edeab5b
......@@ -348,7 +348,7 @@ function updateGenerator() {
case 'input_statement':
var name = block.getFieldValue('INPUTNAME');
code.push(makeVar('statements', name) +
" = Blockly.' + language + '.statementToCode(block, '" +
" = Blockly." + language + ".statementToCode(block, '" +
name + "');");
break;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment