forked from GNUsocial/gnu-social
Refactored geo location removal to removeNoticeDataGeo()
This commit is contained in:
parent
fe8927a42c
commit
ad323575e6
23
js/util.js
23
js/util.js
@ -535,23 +535,13 @@ var SN = { // StatusNet
|
|||||||
|
|
||||||
function(error) {
|
function(error) {
|
||||||
if (error.PERMISSION_DENIED == 1) {
|
if (error.PERMISSION_DENIED == 1) {
|
||||||
$('label[for='+SN.C.S.NoticeDataGeo+']').removeClass('checked');
|
removeNoticeDataGeo();
|
||||||
NDGS.hide();
|
|
||||||
$('#'+SN.C.S.NoticeLat).val('');
|
|
||||||
$('#'+SN.C.S.NoticeLon).val('');
|
|
||||||
$('#'+SN.C.S.NoticeLocationNs).val('');
|
|
||||||
$('#'+SN.C.S.NoticeLocationId).val('');
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$('label[for='+SN.C.S.NoticeDataGeo+']').removeClass('checked');
|
removeNoticeDataGeo();
|
||||||
NDGS.hide();
|
|
||||||
$('#'+SN.C.S.NoticeLat).val('');
|
|
||||||
$('#'+SN.C.S.NoticeLon).val('');
|
|
||||||
$('#'+SN.C.S.NoticeLocationNs).val('');
|
|
||||||
$('#'+SN.C.S.NoticeLocationId).val('');
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -560,6 +550,15 @@ var SN = { // StatusNet
|
|||||||
NDG.change();
|
NDG.change();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function removeNoticeDataGeo() {
|
||||||
|
$('label[for='+SN.C.S.NoticeDataGeo+']').removeClass('checked');
|
||||||
|
$('#'+SN.C.S.NoticeDataGeoSelected).hide();
|
||||||
|
$('#'+SN.C.S.NoticeLat).val('');
|
||||||
|
$('#'+SN.C.S.NoticeLon).val('');
|
||||||
|
$('#'+SN.C.S.NoticeLocationNs).val('');
|
||||||
|
$('#'+SN.C.S.NoticeLocationId).val('');
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
NewDirectMessage: function() {
|
NewDirectMessage: function() {
|
||||||
|
Loading…
Reference in New Issue
Block a user