|
|
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() );
| |
| });
| |
| });
| |