mirror of
https://github.com/google/blockly.git
synced 2026-01-04 15:40:08 +01:00
Fix capitolization error
This commit is contained in:
@@ -490,7 +490,7 @@ FactoryUtils.getFieldsJs_ = function(block) {
|
||||
var width = Number(block.getFieldValue('WIDTH'));
|
||||
var height = Number(block.getFieldValue('HEIGHT'));
|
||||
var alt = JSON.stringify(block.getFieldValue('ALT'));
|
||||
var flipRtl = Json.stringify(block.getFieldValue('FLIP_RTL'));
|
||||
var flipRtl = JSON.stringify(block.getFieldValue('FLIP_RTL'));
|
||||
fields.push('new Blockly.FieldImage(' +
|
||||
src + ', ' + width + ', ' + height +
|
||||
', { alt: ' + alt + ', flipRtl: ' + flipRtl + ' })');
|
||||
|
||||
Reference in New Issue
Block a user