مدیاویکی:Common.js
از ویکییاد
نکته: پس از انتشار ممکن است برای دیدن تغییرات نیاز باشد که حافظهٔ نهانی مرورگر خود را پاک کنید.
- فایرفاکس / سافاری: کلید Shift را نگه دارید و روی دکمهٔ Reload کلیک کنید، یا کلیدهای Ctrl-F5 یا Ctrl-R را با هم فشار دهید (در رایانههای اپل مکینتاش کلیدهای ⌘-R)
- گوگل کروم: کلیدهای Ctrl+Shift+R را با هم فشار دهید (در رایانههای اپل مکینتاش کلیدهای ⌘-Shift-R)
- Edge: کلید Ctrl را نگهدارید و روی دکمهٔ Refresh کلیک کنید، یا کلیدهای Ctrl-F5 را با هم فشار دهید
/**
* Umami Analytics tracking (privacy-focused, self-hosted)
*/
(function() {
// Create the script element
var script = document.createElement('script');
// Set attributes exactly as provided by Umami
script.defer = true;
script.src = 'https://cloud.umami.is/script.js';
script.setAttribute('data-website-id', 'f5f75b33-a7ed-4d71-ac5a-7750a48efaa0');
// Append to head (or body – head is preferred for earlier loading)
document.head.appendChild(script);
})();
/**
* Gallery to background-cover: set img src as background on .thumb div + hide img
* → ONLY on Category: pages (not articles or other namespaces)
*/
(function () {
'use strict';
// Early exit if not on a category page
if (mw.config.get('wgCanonicalNamespace') !== 'Category') {
return;
}
function processGalleries() {
document.querySelectorAll('li.gallerybox').forEach(function (box) {
// Find the .thumb div and the img inside it
const thumbDiv = box.querySelector('div.thumb');
const img = thumbDiv ? thumbDiv.querySelector('img.mw-file-element') : null;
if (thumbDiv && img && img.src && !thumbDiv.dataset.backgroundApplied) {
// Apply background to the .thumb div
thumbDiv.style.backgroundImage = 'url(' + img.src + ')';
thumbDiv.style.backgroundSize = 'cover';
thumbDiv.style.backgroundPosition = 'center center';
thumbDiv.style.backgroundRepeat = 'no-repeat';
// Hide the original <img> tag
img.style.display = 'none';
// Mark as processed (prevents re-processing the same element)
thumbDiv.dataset.backgroundApplied = 'true';
}
});
}
// Run once DOM is ready
document.addEventListener('DOMContentLoaded', processGalleries);
// Watch for dynamic content additions (very useful for DPL, CategoryTree, transclusions, AJAX-loaded galleries, etc.)
const observer = new MutationObserver(processGalleries);
observer.observe(document.body, { childList: true, subtree: true });
// Extra fallback runs (in case observer misses something or images load very late)
setTimeout(processGalleries, 1000);
setTimeout(processGalleries, 2500);
setTimeout(processGalleries, 5000); // one more — harmless and helps on slow connections
})();
