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')) {
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();
}
}
},