Manual commit

This commit is contained in:
ellen.spertus
2013-12-20 16:25:26 -08:00
parent 7e1b5612ae
commit ea211c5080
466 changed files with 6463 additions and 3458 deletions

View File

@@ -30,7 +30,7 @@ goog.require('Blockly.Python');
Blockly.Python['colour_picker'] = function(block) {
// Colour picker.
var code = '\'' + block.getTitleValue('COLOUR') + '\'';
var code = '\'' + block.getFieldValue('COLOUR') + '\'';
return [code, Blockly.Python.ORDER_ATOMIC];
};