MediaWiki:Common.js: Difference between revisions

From Celeste Wiki
swapped => with function(id)
mNo edit summary
(swapped => with function(id))
(4 intermediate revisions by the same user not shown)
Line 6:
* By [[User:Sikon|Sikon]], updated by [[User:Bizzeebeever]]
*/
/*
$j( function() {
var $title = $j( '#title-meta0' ),
Line 18:
}
} );
*/
 
 
 
Line 24:
* Used by [[Template:Nologo]]
* Updated by [[User:Bizzeebeever]]
*//*
$j( function() {
if ( $j( '#nologo' ).length ) {
Line 30:
}
} );
*/
 
 
/** Title remover ********************************************************
* Used by [[Template:Notitle]]
* Updated by [[User:Bizzeebeever]]
*//*
$j( function () {
if ( $j( '#notitle' ).length ) {
Line 41:
}
} );
*/
 
/** Categories remover ***************************************************
* Used by [[Template:Nocategories]]
* Updated by [[User:Bizzeebeever]]
*//*
$j( function() {
if ( $j( '#nocategories' ).length ) {
Line 51:
}
} );
*/
 
/** Show username ********************************************************
* The annoying hack used by [[Template:USERNAME]]!
Line 57:
* Originally by [[wikia:User:Splarka|Splarka]], [[User:Spang]]
* New version by [[User:Bizzeebeever]]
*//*
$j( function() {
var name = mw.config.get( 'wgUserName' );
Line 63:
$j( 'span.insertusername' ).text( name );
}
} );*/
 
/** Archive edit tab disabling *******************************************
Line 70:
* or by typing the edit address manually.
* By [[User:Spang|Spang]], rewritten by [[User:Bizzeebeever]]
*//*
$j( function() {
if ( $j( '#old-forum-warning' ).length && !window.enableOldForumEdit ) {
Line 77:
.text( 'No editing' );
}
} );*/
 
/** Add-section tab disabling ********************************************
Line 85:
* example: <div id="disableAddSection"></div>
* By [[User:Olipro|Olipro]], updated by [[User:Bizzeebeever]]
*//*
$j( function() {
if ( $j( '#disableAddSection' ).length ) {
$j( '#ca-addsection' ).remove();
}
} );*/
 
// (test) Replaces image
 
if (document.getElementById('replaceImageButton').addEventListener('click', function() {
document.getElementById('replaceImageButton').addEventListener('click', function() {
// Get a reference to the container element by its ID
var container = document.getElementById('containerID');
// Find the image element within the container
var imageElement = container.querySelector('img');
// Replace the image source with a new one
imageElement.src = document.getElementById('newImageURL').innerText;
});
}
 
// Default scroll position for maps
window.addEventListener("load", function() {
console.log("started execution");
const bottom = ["scroll0", "scroll1", "scroll2", "scroll4", "scroll7", "scroll8"]; // ids of maps where we need to push the scrollbar to bottom
bottom.forEach(function(id){
console.log("trying to change scroll position of " + id);
if (document.getElementById(id)) {
// document.getElementById(id).scrollTop = document.getElementById(id).scrollHeight;
document.getElementById(id).scrollTop = 999999;
}
});
});
2,357

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.