summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@status.net>2010-01-18 12:55:14 +0000
committerSarven Capadisli <csarven@status.net>2010-01-24 00:21:42 +0100
commitc367e09d1130d4d4f01e029c4659b18f55ae6d8f (patch)
treec329067ae716da0beac9d93eb79b486effc3b01d /js
parent0f3658d3da788b071da408839195526a10da5e2e (diff)
Some JS cleaning up for NoticeLocationAttach (which fixes also fixes a
few bugs in WebKit)
Diffstat (limited to 'js')
-rw-r--r--js/util.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/js/util.js b/js/util.js
index d93467d4a..a7339010a 100644
--- a/js/util.js
+++ b/js/util.js
@@ -498,7 +498,7 @@ var SN = { // StatusNet
$.cookie(SN.C.S.NoticeDataGeoCookie, 'disabled');
}
- function getJSONgeocodeURL(geocodeURL, data, position) {
+ function getJSONgeocodeURL(geocodeURL, data) {
$.getJSON(geocodeURL, data, function(location) {
var lns, lid;
@@ -513,7 +513,7 @@ var SN = { // StatusNet
}
if (typeof(location.name) == 'undefined') {
- NLN_text = position.coords.latitude + ';' + position.coords.longitude;
+ NLN_text = data.lat + ';' + data.lon;
}
else {
NLN_text = location.name;
@@ -575,7 +575,7 @@ var SN = { // StatusNet
token: $('#token').val()
};
- getJSONgeocodeURL(geocodeURL, data, position);
+ getJSONgeocodeURL(geocodeURL, data);
},
function(error) {
@@ -597,12 +597,12 @@ var SN = { // StatusNet
else {
if (NLat.length > 0 && NLon.length > 0) {
var data = {
- 'lat': NLat,
- 'lon': NLon,
- 'token': $('#token').val()
+ lat: NLat,
+ lon: NLon,
+ token: $('#token').val()
};
- getJSONgeocodeURL(geocodeURL, data, position);
+ getJSONgeocodeURL(geocodeURL, data);
}
else {
removeNoticeDataGeo();