Loading Market Data Explorer...
(function() {
const container = document.getElementById('et-market-explorer');
const config = JSON.parse(container.dataset.config);
let state = {
products: [],
currentCat: config.default_category || 'fibers',
currentType: 'all',
currentRegion: 'all',
selectedSlug: null,
prices: null,
};
async function loadProducts() {
try {
const url = config.api_url…
Read more...