Backup Commit

This commit is contained in:
2025-05-20 12:36:47 +02:00
parent e4f85d21b6
commit 53c39085bc
58 changed files with 8424 additions and 0 deletions
+46
View File
@@ -0,0 +1,46 @@
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';