diff --git a/js/util.js b/js/util.js index 46efe92ffe..7005d3125e 100644 --- a/js/util.js +++ b/js/util.js @@ -439,7 +439,7 @@ var SN = { // StatusNet NoticeLocationAttach: function() { if ($('#notice_data-location_enabled').length > 0) { - if(navigator.geolocation) { + if (navigator.geolocation) { $('#notice_data-location_enabled').change(function() { $.cookie(SN.C.S.NoticeLocationCookieName, $('#notice_data-location_enabled').attr('checked')); if($('#notice_data-location_enabled').attr('checked')) { @@ -472,8 +472,6 @@ var SN = { // StatusNet var cookieVal = $.cookie(SN.C.S.NoticeLocationCookieName); $('#notice_data-location_enabled').attr('checked',(cookieVal == null || cookieVal == 'true')); $('#notice_data-location_enabled').change(); - } else { - $('#notice_data-location_enabled_container').remove(); } } },