controls_ifelse: Remove right-align. Remove Boolean check on statements. (#749)

This commit is contained in:
Andrew n marshall
2016-11-16 09:55:58 -08:00
committed by GitHub
parent 8fba5cd044
commit dd95203cdc

View File

@@ -277,26 +277,21 @@ Blockly.Blocks['controls_ifelse'] = {
{
"type": "input_value",
"name": "IF0",
"check": "Boolean",
"align": "RIGHT"
"check": "Boolean"
}
],
"message1": "%{BKY_CONTROLS_IF_MSG_THEN} %1",
"args1": [
{
"type": "input_statement",
"name": "DO0",
"check": "Boolean",
"align": "RIGHT"
"name": "DO0"
}
],
"message2": "%{BKY_CONTROLS_IF_MSG_ELSE} %1",
"args2": [
{
"type": "input_statement",
"name": "ELSE",
"check": "Boolean",
"align": "RIGHT"
"name": "ELSE"
}
],
"previousStatement": null,