User:Zhuyifei1999/common.js: Difference between revisions

From WikiIndex
Jump to navigation Jump to search
(Don't like this either)
(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() );
        });
});