MediaWiki:Common.js: Difference between revisions

From Legoktm
(.ready)
(test)
Line 4: Line 4:
$( function () {
$( function () {
mw.hook( 'wikipage.content' ).add( function ( $content ) {
mw.hook( 'wikipage.content' ).add( function ( $content ) {
console.log("fire");
$content.find( '.mw-gallery-slideshow-buttons' ).each( function () {
$content.find( '.mw-gallery-slideshow-buttons' ).each( function () {
console.log("found gallery");
var buttons = this;
var buttons = this;
setInterval( function() {
setInterval( function() {

Revision as of 07:46, 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 ) {
console.log("fire");
		$content.find( '.mw-gallery-slideshow-buttons' ).each( function () {
console.log("found gallery");
			var buttons = this;
			setInterval( function() {
				buttons.firstChild.children[2].firstChild.click();
			}, 3000 );
		} );
	} );
} );