"میڈیاویکی:Common.js" کے نسخوں کے درمیان فرق
Appearance
Arsait (تبادلۂ خیال | شراکتیں) کوئی خلاصۂ ترمیم نہیں |
Arsait (تبادلۂ خیال | شراکتیں) کوئی خلاصۂ ترمیم نہیں ٹیگ: ردِّ ترمیم |
||
سطر 1: | سطر 1: | ||
/* 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); | |||
} | |||
} | |||
}); |
نسخہ بمطابق 01:23، 27 فروری 2025ء
/* 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);
}
}
});