MediaWiki:Common.js: Difference between revisions
From Mutant Year Zero
mNo edit summary |
mNo edit summary |
||
Line 16: | Line 16: | ||
/* Scroll to center map*/ | /* Scroll to center map*/ | ||
if (mw.config.get('wgPageName') === 'Zone_Map') { | if (mw.config.get('wgPageName') === 'Zone_Map') { | ||
// | var el = document.getElementById("zonemap"); // Or whatever method to get the element, again | ||
// | |||
// To set the scroll | |||
el.scrollTo(0, 0); | |||
// To increment the scroll | |||
el.scrollBy(400, 400); | |||
} | } |
Revision as of 15:17, 16 January 2024
/* Any JavaScript here will be loaded for all users on every page load. */
/* Make the logo link to main site */
$(".timeless-logo").attr("href", 'http://rpg.sandcat.nl/');
/* for a Move, deselect the "Leave a redirect behind" checkbox by default */
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Movepage' ) {
$( function () {
i= $( 'input[name=wpLeaveRedirect]' );
if ( i.length ) {
i[0].checked = false;
}
} )
}
/* Scroll to center map*/
if (mw.config.get('wgPageName') === 'Zone_Map') {
var el = document.getElementById("zonemap"); // Or whatever method to get the element, again
// To set the scroll
el.scrollTo(0, 0);
// To increment the scroll
el.scrollBy(400, 400);
}