[fusion-commits] r3009 - trunk/widgets

svn_fusion at osgeo.org svn_fusion at osgeo.org
Thu Oct 12 04:43:50 PDT 2017


Author: jng
Date: 2017-10-12 04:43:50 -0700 (Thu, 12 Oct 2017)
New Revision: 3009

Modified:
   trunk/widgets/SelectRadiusValue.js
Log:
#659: Fix the error at hand (this.input is a DOM input element)

Modified: trunk/widgets/SelectRadiusValue.js
===================================================================
--- trunk/widgets/SelectRadiusValue.js	2017-09-29 04:50:52 UTC (rev 3008)
+++ trunk/widgets/SelectRadiusValue.js	2017-10-12 11:43:50 UTC (rev 3009)
@@ -110,7 +110,7 @@
     
     updateWidgetValue: function() {
         if (this.widget) {
-            var radius = this.input.getValue();
+            var radius = this.input.value;
             this.widget.setRadius(radius);
         }
     },



More information about the fusion-commits mailing list