diff options
author | Sarven Capadisli <csarven@status.net> | 2010-01-18 12:55:14 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2010-01-26 00:25:13 +0100 |
commit | a35c52b6bef775a47785922a25fad3d9199fce1c (patch) | |
tree | 22694b46647f1cf2e7cb9db09577bc0259c2d272 /js/util.js | |
parent | 2e643071ff3d03bd05f453b8e144aee4695e952e (diff) |
Some JS cleaning up for NoticeLocationAttach (which fixes also fixes a
few bugs in WebKit)
Diffstat (limited to 'js/util.js')
-rw-r--r-- | js/util.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/js/util.js b/js/util.js index a10e9d15a..aeec8d89d 100644 --- a/js/util.js +++ b/js/util.js @@ -494,7 +494,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; @@ -509,7 +509,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; @@ -571,7 +571,7 @@ var SN = { // StatusNet token: $('#token').val() }; - getJSONgeocodeURL(geocodeURL, data, position); + getJSONgeocodeURL(geocodeURL, data); }, function(error) { @@ -593,12 +593,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(); |