[Gridsquare Map popup] Only let popup work if logged.

这个提交包含在:
Andreas 2021-08-19 18:16:32 +02:00
父节点 2d835654dc
当前提交 7a6c2c2141

查看文件

@ -810,6 +810,7 @@ $(document).ready(function(){
console.log(map.getZoom()); console.log(map.getZoom());
if(map.getZoom() > 2) { if(map.getZoom() > 2) {
<?php if ($this->session->userdata('user_callsign')) { ?>
var band = ''; var band = '';
var search_type = "<?php echo $this->uri->segment(2); ?>"; var search_type = "<?php echo $this->uri->segment(2); ?>";
if(search_type == "satellites") { if(search_type == "satellites") {
@ -846,6 +847,7 @@ $(document).ready(function(){
} }
} }
}); });
<?php } ?>
} }
}; };