Fix inconsistent behaviour

This commit is contained in:
miguel76
2016-04-09 12:18:27 -03:00
parent 1e3297ba0a
commit 3af4a6848a

View File

@@ -222,7 +222,7 @@ Blockly.Input.prototype.init = function() {
return; // Headless blocks don't need fields initialized.
}
for (var x = 0; x < this.fieldRow.length; x++) {
this.fieldRow[x].init(this.sourceBlock_);
this.fieldRow[x].init();
}
};