JSLinting on JSON
This commit is contained in:
parent
f3beed6889
commit
cae2429d12
20
js/util.js
20
js/util.js
|
@ -525,13 +525,13 @@ var SN = { // StatusNet
|
|||
$('#'+SN.C.S.NoticeDataGeo).attr('checked', true);
|
||||
|
||||
var cookieValue = {
|
||||
'NLat': data.lat,
|
||||
'NLon': data.lon,
|
||||
'NLNS': lns,
|
||||
'NLID': lid,
|
||||
'NLN': NLN_text,
|
||||
'NLNU': location.url,
|
||||
'NDG': true
|
||||
NLat: data.lat,
|
||||
NLon: data.lon,
|
||||
NLNS: lns,
|
||||
NLID: lid,
|
||||
NLN: NLN_text,
|
||||
NLNU: location.url,
|
||||
NDG: true
|
||||
};
|
||||
$.cookie(SN.C.S.NoticeDataGeoCookie, JSON.stringify(cookieValue));
|
||||
});
|
||||
|
@ -566,9 +566,9 @@ var SN = { // StatusNet
|
|||
$('#'+SN.C.S.NoticeLon).val(position.coords.longitude);
|
||||
|
||||
var data = {
|
||||
'lat': position.coords.latitude,
|
||||
'lon': position.coords.longitude,
|
||||
'token': $('#token').val()
|
||||
lat: position.coords.latitude,
|
||||
lon: position.coords.longitude,
|
||||
token: $('#token').val()
|
||||
};
|
||||
|
||||
getJSONgeocodeURL(geocodeURL, data);
|
||||
|
|
Loading…
Reference in New Issue
Block a user