MediaWiki:Gadget-CellShowHide.js: Difference between revisions
From YGOCounter
en>Admin No edit summary |
m 1 revision imported |
||
(No difference)
| |||
Latest revision as of 11:11, 30 December 2025
var showText = '[Show]';
var showPseudoLink = $( '<a>' ).addClass( 'cargoToggle' ).text( showText );
var hideText = '[Hide]';
$('span.cargoMinimizedText')
.hide()
.parent().prepend( showPseudoLink );
$('a.cargoToggle').click( function() {
if ( $(this).text() == showText ) {
$(this).siblings('.cargoMinimizedText').show(100).css('display', 'inline');
$(this).text(hideText);
} else {
$(this).siblings('.cargoMinimizedText').hide(100);
$(this).text(showText);
}
});