How to vote on the Showcase 2024
if (/iPad|iPhone|iPod/.test(navigator.userAgent)) {
document.body.classList.add("ficompass-device-iphone");
} else if (/Android/.test(navigator.userAgent)) {
document.body.classList.add("ficompass-device-android");
}
document.addEventListener('DOMContentLoaded', function () {
jQuery( "span.arrow a" ).each(function() {
const scroll_speed = 500;
const $this = jQuery(this);
const scroll_target_id = $this.attr('href');
const scroll_target = jQuery(scroll_target_id);
if (scroll_target.length > 0) {
$this.on('click', functi

