We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b9f8e1 commit f11939eCopy full SHA for f11939e
WME Form Filler.user.js
@@ -2,7 +2,7 @@
2
// @name WME Form Filler
3
// @description Use info from WME to automatically fill out related forms
4
// @namespace https://greasyfork.org/users/6605
5
-// @version 1.3
+// @version 1.3.1
6
// @match https://www.waze.com/*editor/*
7
// @match https://beta.waze.com/*editor/*
8
// @exclude https://www.waze.com/*user/editor/*
@@ -392,8 +392,8 @@ function ff_createPermalink(selection)
392
{
393
latLon = selection[0].model.getCenter().clone();
394
latLon.transform(Waze.map.projection.projCode,Waze.map.displayProjection.projCode);
395
- lat = latLon.x;
396
- lon = latLon.y;
+ lat = latLon.y;
+ lon = latLon.x;
397
}
398
399
var maxzoom = 2,
0 commit comments