MediaWiki:Common.js: Difference between revisions
From Mutant Year Zero
mNo edit summary |
mNo edit summary |
||
Line 56: | Line 56: | ||
}); | }); | ||
} | } | ||
function isSortedTablePage() { | |||
return ( wgPageName == "Ark_Projects"); | |||
} | |||
jQuery( document ).ready( function( $ ) { | |||
// wrapped in "mw.loader.using" so this doesn't execute until Tablesorter has loaded | |||
mw.loader.using( 'jquery.tablesorter', function() { | |||
if( isSortedTablePage() ) $('table.sortable').tablesorter( {sortList: [ { 1: 'asc'} ]} ) | |||
// or look for tables with an ID attribute of "sortMe" on any page | |||
// $( '#sortMe' ).tablesorter( {sortList: [ { 0: 'asc'} ]} ) | |||
} ); | |||
} ); |
Revision as of 15:13, 28 March 2024
/* Any JavaScript here will be loaded for all users on every page load. */
/* Make the top-left SandcatRPG 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;
}
} )
}
/* For map page */
if (mw.config.get('wgPageName') === 'Zone_Map') {
/* Scroll to the active cell on the Zone Map */
document.getElementById('active').scrollIntoView({
behavior: 'auto',
block: 'center',
inline: 'center'
});
/* fullscreen icon */
$('#fullscreeninput').on('click', function(){
// if already full screen; exit
// else go fullscreen
if (document.fullscreenElement) {
document.exitFullscreen();
} else {
$('#zonemap').get(0).requestFullscreen();
}
});
/* my location icon */
$('#mylocation').on('click', function(){
document.getElementById('active').scrollIntoView({
behavior: 'auto',
block: 'center',
inline: 'center'
});
});
/* add zoomslider */
document.getElementById('zoominput').innerHTML = '<input id="zoomslider" min="0.3" max="2" value="1" step="0.1" type="range"/>';
$('#zoomslider').on("change mousemove", function() {
$(".gridmap").css("zoom", $(this).val());
});
/* add zoomreset */
$('#resetzoom').on('click', function(){
$("#zoomslider").val(1);
$(".gridmap").css("zoom", 1);
});
}
function isSortedTablePage() {
return ( wgPageName == "Ark_Projects");
}
jQuery( document ).ready( function( $ ) {
// wrapped in "mw.loader.using" so this doesn't execute until Tablesorter has loaded
mw.loader.using( 'jquery.tablesorter', function() {
if( isSortedTablePage() ) $('table.sortable').tablesorter( {sortList: [ { 1: 'asc'} ]} )
// or look for tables with an ID attribute of "sortMe" on any page
// $( '#sortMe' ).tablesorter( {sortList: [ { 0: 'asc'} ]} )
} );
} );