MediaWiki:Gadget-RailModule.js: Różnice pomiędzy wersjami

Z Nonsensopedii, polskiej encyklopedii humoru
M
Znacznik: rewert ręczny
M (keksperyment)
 
Linia 36: Linia 36:
}
}
}
}

// wypełnij railmodule
// wypełnij railmodule z preloada podanego przez serwer
// vide rozszerzenie ConfigHacks
$.ajax( {
var railContent = $('#railmodule-preload');
url: 'https://nonsa.pl/wiki/MediaWiki:RailModule?action=render',
if ( railContent.length ) {
type: 'GET',
railContent.children().appendTo( 'div.footer-railmodule-content' );
success: function ( data ) {
}
$( 'div.footer-railmodule-content' ).prepend( data );
}
} );
}() );
}() );

Aktualna wersja na dzień 18:56, 13 maj 2022

/**
 * Magia dodająca bajery do stopki w trybie mobilnym.
 *
 * Autorzy: [[User:Ostrzyciel]], [[User:Polskacafe]]
 **/

jQuery( document ).ready( function () {
	var afterContent = $( '#mw-data-after-content' );
	var catlinks = $( '#catlinks' );
	const railDiv = '<div class="post-content footer-railmodule-content" style="margin-top: 22px;"></div>';
	
	// railmodule -- czywiesze i te sprawy
	var ratingstars = $( '.footer-ratingstars' );
	if ( !ratingstars.length ) {
		afterContent.prepend( railDiv );
	} else {
		ratingstars.after( railDiv );
	}
	
	// przycisk edycji -- tylko na Timelessie
	if ( mw.config.get( 'skin' ) === 'timeless' && 
		mw.config.get( 'wgAction' ) === 'view' && 
		mw.config.get( 'wgIsProbablyEditable' ) 
		) {
		var href = 'https://nonsa.pl/wiki/' + mw.Uri.encode( mw.config.get( 'wgPageName' ) );
		var toInsert = '<a href="' + href + '?action=edit' + '" class="bottom-edit-button bottom-edit-button-source"> \
			<div>Edytuj tę stronę</div> \
		</a><a href="' + href + '?veaction=edit' + '" class="bottom-edit-button bottom-edit-button-ve"> \
			<div>Edytuj tę stronę</div> \
		</a>';
		
		if ( catlinks.length === 1 ) {
			catlinks.after( toInsert );
		} else {
			afterContent.before( toInsert );
		}
	}
	
	// wypełnij railmodule z preloada podanego przez serwer
	// vide rozszerzenie ConfigHacks
	var railContent = $('#railmodule-preload');
	if ( railContent.length ) {
		railContent.children().appendTo( 'div.footer-railmodule-content' );
	}
}() );