Files
furatalog-old-web/assets/scripts/variables.js
T
2025-05-20 12:36:47 +02:00

46 lines
1.1 KiB
JavaScript

var data;
var currentHash;
var myOldUrl = window.location.href;
var navbar = document.getElementById("navbar");
var sticky = navbar.offsetTop;
var filterOpened = false;
var windowWidth = window.innerWidth;
var currency_symbols = {
'USD': '$', // US Dollar
'EUR': '€', // Euro
'CRC': '₡', // Costa Rican Colón
'GBP': '£', // British Pound Sterling
'ILS': '₪', // Israeli New Sheqel
'INR': '₹', // Indian Rupee
'JPY': '¥', // Japanese Yen
'KRW': '₩', // South Korean Won
'NGN': '₦', // Nigerian Naira
'PHP': '₱', // Philippine Peso
'PLN': 'zł', // Polish Zloty
'PYG': '₲', // Paraguayan Guarani
'THB': '฿', // Thai Baht
'UAH': '₴', // Ukrainian Hryvnia
'VND': '₫', // Vietnamese Dong
'AUD': 'A$'
};
var keys = {
37: 1,
38: 1,
39: 1,
40: 1
};
var currentpos = 0;
var filterisopened = true;
var slideIndex = 1;
var supportsPassive = false;
var wheelOpt = supportsPassive ? {
passive: false
} : false;
var wheelEvent = 'onwheel' in document.createElement('div') ? 'wheel' : 'mousewheel';