jquery-cookie returns undefined
as of 1.4.0
when a cookie isn't set. This fixes a problem where the browser was never asking for location, and the JSON.parse call was throwing an exception when the geolocation cookie wasn't present.
This commit is contained in:
parent
29620619b5
commit
9e1d4bfbf0
@ -1081,12 +1081,12 @@ var SN = { // StatusNet
|
|||||||
label.attr('title', label.text());
|
label.attr('title', label.text());
|
||||||
|
|
||||||
check.change(function () {
|
check.change(function () {
|
||||||
if (check.prop('checked') === true || $.cookie(SN.C.S.NoticeDataGeoCookie) === null) {
|
if (check.prop('checked') === true || $.cookie(SN.C.S.NoticeDataGeoCookie) === undefined) {
|
||||||
label
|
label
|
||||||
.attr('title', NoticeDataGeo_text.ShareDisable)
|
.attr('title', NoticeDataGeo_text.ShareDisable)
|
||||||
.addClass('checked');
|
.addClass('checked');
|
||||||
|
|
||||||
if ($.cookie(SN.C.S.NoticeDataGeoCookie) === null || $.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
|
if ($.cookie(SN.C.S.NoticeDataGeoCookie) === undefined || $.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
|
||||||
if (navigator.geolocation) {
|
if (navigator.geolocation) {
|
||||||
SN.U.NoticeGeoStatus(form, 'Requesting location from browser...');
|
SN.U.NoticeGeoStatus(form, 'Requesting location from browser...');
|
||||||
navigator.geolocation.getCurrentPosition(
|
navigator.geolocation.getCurrentPosition(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user