mirror of
https://github.com/google/blockly.git
synced 2026-01-08 01:20:12 +01:00
chore: auto-fix violations of comma-dangle rule (#5625)
This commit is contained in:
@@ -303,7 +303,7 @@ FieldAngle.prototype.dropdownCreate_ = function() {
|
||||
'version': '1.1',
|
||||
'height': (FieldAngle.HALF * 2) + 'px',
|
||||
'width': (FieldAngle.HALF * 2) + 'px',
|
||||
'style': 'touch-action: none'
|
||||
'style': 'touch-action: none',
|
||||
},
|
||||
null);
|
||||
const circle = dom.createSvgElement(
|
||||
@@ -311,7 +311,7 @@ FieldAngle.prototype.dropdownCreate_ = function() {
|
||||
'cx': FieldAngle.HALF,
|
||||
'cy': FieldAngle.HALF,
|
||||
'r': FieldAngle.RADIUS,
|
||||
'class': 'blocklyAngleCircle'
|
||||
'class': 'blocklyAngleCircle',
|
||||
},
|
||||
svg);
|
||||
this.gauge_ =
|
||||
@@ -320,7 +320,7 @@ FieldAngle.prototype.dropdownCreate_ = function() {
|
||||
Svg.LINE, {
|
||||
'x1': FieldAngle.HALF,
|
||||
'y1': FieldAngle.HALF,
|
||||
'class': 'blocklyAngleLine'
|
||||
'class': 'blocklyAngleLine',
|
||||
},
|
||||
svg);
|
||||
// Draw markers around the edge.
|
||||
@@ -334,7 +334,7 @@ FieldAngle.prototype.dropdownCreate_ = function() {
|
||||
'y2': FieldAngle.HALF,
|
||||
'class': 'blocklyAngleMarks',
|
||||
'transform': 'rotate(' + angle + ',' + FieldAngle.HALF + ',' +
|
||||
FieldAngle.HALF + ')'
|
||||
FieldAngle.HALF + ')',
|
||||
},
|
||||
svg);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user