বিষয়বস্তুতে চলুন

মিডিয়াউইকি:Common.js: সংশোধিত সংস্করণের মধ্যে পার্থক্য

From ওয়ার্ল্ডপিডিয়া, the free encyclopedia
সম্পাদনা সারাংশ নেই
ট্যাগ: পুনর্বহালকৃত
সম্পাদনা সারাংশ নেই
ট্যাগ: হাতদ্বারা প্রত্যাবর্তন মোবাইল সম্পাদনা মোবাইল ওয়েব সম্পাদনা
১ নং লাইন: ১ নং লাইন:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */
mw.loader.using('mediawiki.util').done(function () {
    if (window.matchMedia("(max-width: 768px)").matches) {
        var infobox = document.querySelector('.infobox');
        var content = document.querySelector('.content');
        if (infobox && content) {
            content.parentNode.insertBefore(content, infobox.nextSibling);
        }
    }
});

০২:৫৭, ২৭ ফেব্রুয়ারি ২০২৫ তারিখে সংশোধিত সংস্করণ

/* Any JavaScript here will be loaded for all users on every page load. */