[Mapbender-commits] r8959 - trunk/mapbender/http/widgets

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Tue Jul 1 05:55:34 PDT 2014


Author: hwbllmnn
Date: 2014-07-01 05:55:34 -0700 (Tue, 01 Jul 2014)
New Revision: 8959

Modified:
   trunk/mapbender/http/widgets/w_digitize.js
Log:
fixed order of arguments...


Modified: trunk/mapbender/http/widgets/w_digitize.js
===================================================================
--- trunk/mapbender/http/widgets/w_digitize.js	2014-07-01 12:36:43 UTC (rev 8958)
+++ trunk/mapbender/http/widgets/w_digitize.js	2014-07-01 12:55:34 UTC (rev 8959)
@@ -616,8 +616,8 @@
     },
 
     _create: function () {
-        this.reinitializeProxy = $.proxy(this, this._reinitialize);
-        this.addPointProxy = $.proxy(this, this._addPoint);
+        this.reinitializeProxy = $.proxy(this._reinitialize, this);
+        this.addPointProxy = $.proxy(this._addPoint, this);
 
         this._digitizePoints = [];
 



More information about the Mapbender_commits mailing list