svghmi/widget_pathslider.ysl2
changeset 3454 0b5ab53007a9
parent 3356 2507e35976c0
--- a/svghmi/widget_pathslider.ysl2	Thu May 05 10:35:29 2022 +0200
+++ b/svghmi/widget_pathslider.ysl2	Thu May 05 10:37:36 2022 +0200
@@ -1,8 +1,8 @@
 // widget_pathslider.ysl2
 widget_desc("PathSlider") {
     longdesc
-    || 
-    PathSlider - 
+    ||
+    PathSlider -
     ||
 
     shortdesc > Slide an SVG element along a path by dragging it
@@ -10,7 +10,7 @@
     path name="value" accepts="HMI_INT,HMI_REAL" > value
     path name="min" count="optional" accepts="HMI_INT,HMI_REAL" > min
     path name="max" count="optional" accepts="HMI_INT,HMI_REAL" > max
-    
+
     arg name="min" count="optional" accepts="int,real" > minimum value
     arg name="max" count="optional" accepts="int,real" > maximum value
 }
@@ -25,7 +25,7 @@
         pathLength = undefined;
         precision = undefined;
         origPt = undefined;
-        
+
 
         scanPath() {
           this.pathLength = this.path_elt.getTotalLength();
@@ -67,7 +67,7 @@
               bestPoint = beforePoint,
               bestLength = beforeLength,
               bestDistance = beforeDistance;
-            } else if ((afterLength = bestLength + precision) <= this.pathLength && 
+            } else if ((afterLength = bestLength + precision) <= this.pathLength &&
                        (afterDistance = distance2(afterPoint = this.path_elt.getPointAtLength(afterLength))) < bestDistance) {
               bestPoint = afterPoint,
               bestLength = afterLength,