mirror of
https://github.com/google/blockly.git
synced 2026-01-11 10:57:07 +01:00
Fixing eslint issue and missing getLastInput call.
This commit is contained in:
@@ -219,7 +219,7 @@ Blockly.blockRendering.Drawer.prototype.drawStatementInput_ = function(row) {
|
||||
Blockly.blockRendering.constants.INSIDE_CORNERS.pathTop;
|
||||
|
||||
var innerHeight =
|
||||
row.height -(2 * Blockly.blockRendering.constants.INSIDE_CORNERS.height);
|
||||
row.height - (2 * Blockly.blockRendering.constants.INSIDE_CORNERS.height);
|
||||
|
||||
this.outlinePath_ += Blockly.utils.svgPaths.lineOnAxis('H', x) +
|
||||
innerTopLeftCorner +
|
||||
|
||||
@@ -134,6 +134,7 @@ Blockly.blockRendering.Highlighter.prototype.drawValueInput = function(row) {
|
||||
};
|
||||
|
||||
Blockly.blockRendering.Highlighter.prototype.drawStatementInput = function(row) {
|
||||
var input = row.getLastInput();
|
||||
var steps = '';
|
||||
if (this.RTL_) {
|
||||
var innerHeight = row.height - (2 * this.insideCornerPaths_.height);
|
||||
|
||||
Reference in New Issue
Block a user