From 08626a689a0bcd96345150a48c4d6960af6ab6b9 Mon Sep 17 00:00:00 2001 From: kozbial Date: Thu, 12 Aug 2021 15:56:10 -0700 Subject: [PATCH] clang-format core/renderers/zelos/marker_svg.js --- core/renderers/zelos/marker_svg.js | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/core/renderers/zelos/marker_svg.js b/core/renderers/zelos/marker_svg.js index a2ad38da1..e14171db6 100644 --- a/core/renderers/zelos/marker_svg.js +++ b/core/renderers/zelos/marker_svg.js @@ -41,11 +41,9 @@ const object = goog.require('Blockly.utils.object'); * @extends {BaseMarkerSvg} */ const MarkerSvg = function(workspace, constants, marker) { - MarkerSvg.superClass_.constructor.call( - this, workspace, constants, marker); + MarkerSvg.superClass_.constructor.call(this, workspace, constants, marker); }; -object.inherits(MarkerSvg, - BaseMarkerSvg); +object.inherits(MarkerSvg, BaseMarkerSvg); /** * Position and display the marker for an input or an output connection. @@ -120,7 +118,8 @@ MarkerSvg.prototype.createDomInternal_ = function() { + values="transparent;transparent;#fff;transparent" + repeatCount="indefinite" /> */ @@ -138,9 +137,7 @@ MarkerSvg.prototype.createDomInternal_ = function() { // Markers and stack cursors don't blink. if (this.isCursor()) { const blinkProperties = this.getBlinkProperties_(); - dom.createSvgElement( - Svg.ANIMATE, blinkProperties, - this.markerCircle_); + dom.createSvgElement(Svg.ANIMATE, blinkProperties, this.markerCircle_); } return this.markerSvg_;