Commit 795bc1c5 authored by carlosperate's avatar carlosperate

Fix missing return value from logic getType().

parent 0a731698
...@@ -365,7 +365,7 @@ Blockly.Blocks['logic_operation'] = { ...@@ -365,7 +365,7 @@ Blockly.Blocks['logic_operation'] = {
}, },
/** Assigns a block type, logic comparison operations result in bools. */ /** Assigns a block type, logic comparison operations result in bools. */
getBlockType: function() { getBlockType: function() {
Blockly.Types.BOOLEAN; return Blockly.Types.BOOLEAN;
} }
}; };
......
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