MediaWiki:Common.js: Difference between revisions

From Unknown Variable
Jump to navigation Jump to search
Considering this template for a minesweeper spoiler solution
(No difference)

Revision as of 20:09, 9 October 2025


/* [[Template:Spoiler]] */
$(function () {
	$('.spoiler-content')
	.off('click') // in case this code is loaded twice
	.on('click', function(e){
		$(this).toggleClass('show');
	}).find('a').on('click', function(e){
		e.stopPropagation();
	});

});
/* End Template:Spoiler */