MediaWiki:Common.js: Difference between revisions
From The Blockheads Wiki
FloofyPlasma (talk | contribs) No edit summary Tag: Reverted |
FloofyPlasma (talk | contribs) No edit summary Tag: Reverted |
||
Line 35: | Line 35: | ||
function mobileCheck() { | function mobileCheck() { | ||
if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)){ | |||
return true | |||
return | }else{ | ||
return false | |||
} | |||
} | } | ||
Revision as of 19:09, 24 October 2024
/* Any JavaScript here will be loaded for all users on every page load. */
// This will add an [edit intro] link at the top of all pages except preview pages and the main page
// by User:Pile0nades on Wikipedia
addOnloadHook(function () {
// if this is preview page or generated page, stop
if(
document.getElementById("wikiPreview") ||
document.getElementById("histlegend") ||
document.getElementById("difference") ||
document.getElementById("watchdetails") ||
document.getElementById("ca-viewsource") ||
window.location.href.indexOf("/wiki/Special:") != -1
) {
if(window.location.href.indexOf("&action=edit§ion=0") != -1) {
document.getElementById("wpSummary").value = "/* Intro */ ";
}
return;
}
// get the page title
var pageTitle = wgPageName;
// create div and set innerHTML to link
var divContainer = document.createElement("div");
divContainer.innerHTML = '<div class="editsection">[<a href="/w/index.php?title='+pageTitle+'&action=edit§ion=0" title="Edit section: '+pageTitle+'">edit intro</a>]</div>';
// insert divContainer into the DOM below the h1
if(window.location.href.indexOf("&action=edit") == -1) {
document.getElementById("content").insertBefore(divContainer, document.getElementsByTagName("h1")[0]);
}
});
function mobileCheck() {
if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)){
return true
}else{
return false
}
}
$(document).ready(function() {
function setResponsiveWidths() {
var element = $('infobox-template'); // Target the class you defined
if (mobileCheck()) { // Mobile breakpoint
element.css('max-width', '100%'); // Set max width for mobile
} else {
element.css('max-width', '30%'); // Set max width for desktop
}
}
// Call on page load
setResponsiveWidths();
// Call on window resize
$(window).resize(function() {
setResponsiveWidths();
});
});