More spaces

This commit is contained in:
Rachel Fenichel
2018-01-24 10:22:13 -08:00
parent 3575d53018
commit 799148da7e
2 changed files with 2 additions and 2 deletions

View File

@@ -148,7 +148,7 @@ Blockly.FlyoutButton.prototype.createDom = function() {
var rect = Blockly.utils.createSvgElement('rect',
{
'class': this.isLabel_ ?
'blocklyFlyoutLabelBackground' : 'blocklyFlyoutButtonBackground',
'blocklyFlyoutLabelBackground' : 'blocklyFlyoutButtonBackground',
'rx': 4, 'ry': 4
},
this.svgGroup_);

View File

@@ -210,7 +210,7 @@ Blockly.RenderedConnection.prototype.highlight = function() {
'class': 'blocklyHighlightedConnectionPath',
'd': steps,
transform: 'translate(' + x + ',' + y + ')' +
(this.sourceBlock_.RTL ? ' scale(-1 1)' : '')
(this.sourceBlock_.RTL ? ' scale(-1 1)' : '')
},
this.sourceBlock_.getSvgRoot());
};