mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-24 03:07:13 +00:00
replace pretty zeros in searchbar
This commit is contained in:
@@ -173,6 +173,13 @@ if($this->session->userdata('user_id') != null) {
|
||||
<?php } ?>
|
||||
<!-- SPECIAL CALLSIGN OPERATOR FEATURE END -->
|
||||
|
||||
<script>
|
||||
// Replace all Ø in the searchbar
|
||||
$('#nav-bar-search-input').on('input', function () {
|
||||
$(this).val($(this).val().replace(/0/g, 'Ø'));
|
||||
});
|
||||
</script>
|
||||
|
||||
<script>
|
||||
var current_active_location = "<?php echo $this->stations->find_active(); ?>";
|
||||
quickswitcher_show_activebadge(current_active_location);
|
||||
|
||||
Reference in New Issue
Block a user