Huomautus: Selaimen välimuisti pitää tyhjentää asetusten tallentamisen jälkeen, jotta muutokset tulisivat voimaan.
- Firefox ja Safari: Napsauta Shift-näppäin pohjassa Päivitä, tai paina Ctrl-F5 tai Ctrl-R (⌘-R Macilla)
- Google Chrome: Paina Ctrl-Shift-R (⌘-Shift-R Macilla)
- Internet Explorer ja Edge: Napsauta Ctrl-näppäin pohjassa Päivitä tai paina Ctrl-F5
- Opera: Paina Ctrl-F5.
"use strict"; // Abydos Wiki script function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); } function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } } function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; } function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } } function _arrayWithHoles(r) { if (Array.isArray(r)) return r; } var mcstat = function mcstat() { var ip = document.getElementById('minecraft-ip'); var online = document.getElementById('minecraft-online'); var version = document.getElementById('minecraft-version'); if (!ip || !online) return; // No status on this page fetch("https://api.mcsrvstat.us/3/".concat(ip.innerText)).then(function (res) { return res.json(); }).then(function (json) { online.innerHTML = json.players.online || 0; online.parentElement.classList.remove("loading-blur"); version.innerHTML = json.version; }).catch(function (err) { return console.error('Fetching player count failed', err); }); }; mcstat(); document.querySelectorAll('[data-item]').forEach(function (el) { var _el$dataset$item$spli = el.dataset.item.split(":"), _el$dataset$item$spli2 = _slicedToArray(_el$dataset$item$spli, 2), type = _el$dataset$item$spli2[0], item = _el$dataset$item$spli2[1]; if (type !== 'item') return; var tooltip = el.dataset.tooltip || item; var size = el.dataset.size ? parseInt(el.dataset.size) : 32; if (isNaN(size)) size = 32; var link = el.dataset.link; el.innerHTML = "".concat(link ? "<a href=\"/".concat(link.replaceAll(" ", "_"), "\">") : '', "<img src=\"https://static.abydos.fi/item/").concat(item, ".png\" height=\"").concat(size, "\" width=\"").concat(size, "\" title=\"").concat(item, "\" alt=\"").concat(item, "\" />").concat(link ? '</a>' : ''); });