MediaWiki:Common.js: Difference between revisions

From Legoktm
(test)
(fix)
Line 4: Line 4:
$( function () {
$( function () {
mw.hook( 'wikipage.content' ).add( function ( $content ) {
mw.hook( 'wikipage.content' ).add( function ( $content ) {
// Wait 5s for the gallery code to set up and run
console.log("fire");
$content.find( '.mw-gallery-slideshow-buttons' ).each( function () {
setTimeout( function () {
$content.find( '.mw-gallery-slideshow-buttons' ).each( function () {
console.log("found gallery");
var buttons = this;
var buttons = this;
setInterval( function() {
setInterval( function() {
buttons.firstChild.children[2].firstChild.click();
buttons.firstChild.children[2].firstChild.click();
}, 3000 );
}, 3000 );
} );
} );
}, 3000 );
} );
} );
} );
} );

Revision as of 07:48, 7 October 2020

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

// Automatically progress through slideshow galleries
$( function () {
	mw.hook( 'wikipage.content' ).add( function ( $content ) {
		// Wait 5s for the gallery code to set up and run
		setTimeout( function () {
			$content.find( '.mw-gallery-slideshow-buttons' ).each( function () {
				var buttons = this;
				setInterval( function() {
					buttons.firstChild.children[2].firstChild.click();
				}, 3000 );
			} );
		}, 3000 );
	} );
} );