User:Zhuyifei1999/common.js: Difference between revisions
Jump to navigation
Jump to search
Zhuyifei1999 (talk | contribs) (Don't like this either) |
Zhuyifei1999 (talk | contribs) (New) |
||
Line 1: | Line 1: | ||
/** | |||
* Move the [edit] link from the opposite edge to the side of the heading title itself | |||
* | |||
* @source: http://www.mediawiki.org/wiki/Snippets/Editsection_inline | |||
* @rev: 4 | |||
*/ | |||
jQuery( document ).ready( function( $ ) { | |||
if ( $.inArray( mw.config.get('editsection-inline'), [ 'no', false ]) !== -1 ) { | |||
return; | |||
} | |||
mw.util.addCSS( '.editsection{float:none!important;margin-left:1em}' ); | |||
mw.util.$content.find('.editsection').each( function() { | |||
var $what = $(this).parent().children(); | |||
$what.first().before( $what.last() ); | |||
}); | |||
}); |
Revision as of 05:51, 24 June 2013
/**
* Move the [edit] link from the opposite edge to the side of the heading title itself
*
* @source: http://www.mediawiki.org/wiki/Snippets/Editsection_inline
* @rev: 4
*/
jQuery( document ).ready( function( $ ) {
if ( $.inArray( mw.config.get('editsection-inline'), [ 'no', false ]) !== -1 ) {
return;
}
mw.util.addCSS( '.editsection{float:none!important;margin-left:1em}' );
mw.util.$content.find('.editsection').each( function() {
var $what = $(this).parent().children();
$what.first().before( $what.last() );
});
});