MediaWiki:Common.js: Difference between revisions

From Legoktm
(slideshow magic)
(No difference)

Revision as of 07:42, 7 October 2020

/* Any JavaScript here will be loaded for all users on every page load. */

// Automatically progress through slideshow galleries
mw.hook( 'wikipage.content' ).add( function ( $content ) {
	$content.find( '.mw-gallery-slideshow-buttons' ).each( function () {
		var buttons = this;
		setInterval( function() {
			buttons.firstChild.children[2].firstChild.click();
		}, 3000 );
	} );
} );